Representatives
Create
Create representative
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| accountID | string |
Account on which to add representative |
| representative | RepresentativeCreateUpdate | Representative to add |
Returns
Promise.<Representative>
List
List representatives
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| accountID | string |
Account on which to add representative |
Returns
Promise.<Array.<Representative>>
Get
Retrieve a specific representative associated with a given Moov account.
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| accountID | string |
Account on which to add representative |
| representativeID | string |
Identifier of representative to retrieve |
Returns
Promise.<Representative>
Delete
Deletes a business representative associated with a Moov account.
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| accountID | string |
Account on which to add representative |
| representativeID | string |
Identifier of representative to retrieve |
Returns
Promise.<void>
Update
Update a specific representative.
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| accountID | string |
Account on which to add representative |
| representativeID | string |
Identifier of representative to retrieve |
| representative | RepresentativeCreateUpdate | Representative to add |
Returns
Promise.<Representative>
Types
Representative
Describes an individual who represents the business.
Properties
| Property | Type | Description |
|---|---|---|
| representativeID | string |
Representative identifier |
| name | RepresentativeName | Name for an individual |
| phone | RepresentativePhone | Phone for an individual |
string |
Email Address. string |
|
| address | RepresentativeAddress | Address for an individual. |
| birthDateProvided | boolean |
Indicates whether this Representative’s birth date has been provided |
| governmentIDProvided | boolean |
Indicates whether a government ID (SSN, ITIN, etc.) has been provided for this Representative |
| responsibilities | RepresentativeResponsibilities | Describes the job responsibilities of an individual |
| createdOn | Date |
Date Representative was created |
| updatedOn | Date |
Date Representative was last updated |
| disabledOn | Date |
Optional date Representative was disabled |
|
|
RepresentativeName
Representative name
Properties
| Property | Type | Description |
|---|---|---|
| firstName | string |
Name this person was given. This is usually the same as first name. string <= 64 characters |
| middleName | string |
Name this person was given. This is usually the same as middle name. string <= 64 characters |
| lastName | string |
Family name of this person. This is usually the same as last name. string <= 64 characters |
| suffix | string |
Suffix of a given name. string <= 20 characters |
RepresentativePhone
Representative phone
Properties
| Property | Type | Description |
|---|---|---|
| number | string |
string |
| countryCode | string |
string <= 1 characters |
RepresentativeAddress
Properties
| Property | Type | Description |
|---|---|---|
| addressLine1 | string |
string <= 32 characters |
| addressLine2 | string |
string <= 32 characters |
| city | string |
string <= 24 characters |
| stateOrProvince | string |
string <= 2 characters |
| postalCode | string |
string <= 5 characters |
| country | string |
string <= 2 characters |
RepresentativeResponsibilities
Properties
| Property | Type | Description |
|---|---|---|
| isController | boolean |
Indicates whether this individual has significant management responsibilities within the business |
| isOwner | boolean |
Indiciates whether this individual has an ownership stake of at least 25% in the business |
| ownershipPercentage | number |
The percentage of ownership this individual has in the business (required if isOwner is true) |
| jobTitle | string |
string <= 64 characters |
RepresentativeBirthDate
Properties
| Property | Type | Description |
|---|---|---|
| day | number |
|
| month | number |
|
| year | number |
4 digit year |
GovernmentID
Properties
| Property | Type | Description |
|---|---|---|
| full | string |
string <= 64 characters |
| lastFour | string |
string <= 4 characters |
RepresentativeGovernmentID
Properties
| Property | Type | Description |
|---|---|---|
| ssn | GovernmentID | |
| itin | GovernmentID |
RepresentativeCreateUpdate
Properties
| Property | Type | Description |
|---|---|---|
| name | RepresentativeName | Name for an individual |
| phone | RepresentativePhone | Phone for an individual |
string |
Email Address. string |
|
| address | RepresentativeAddress | Address for an individual. |
| birthDate | RepresentativeBirthDate | Birthdate for an individual |
| governmentID | RepresentativeGovernmentID | |
| responsibilities | RepresentativeResponsibilities | Describes the job responsibilities of an individual |