Representatives
Create representative
Moov accounts associated with businesses require information regarding individuals who represent the business. You can provide this information by creating a representative.
To create a representative, you’ll need to specify the /accounts/{accountID}/representatives.write
scope when generating a token.
Parameters
Name | Type |
---|---|
accountID |
UUID string |
representative |
Representative |
|
|
List representatives
A Moov account may have multiple representatives depending on the associated business’s ownership and management structure. You can use this method to list all the representatives for a given Moov account. Note that Moov accounts associated with an individual do not have representatives.
To list representatives, you’ll need to specify the /accounts/{accountID}/representatives.read
scope when generating a token.
Parameters
Name | Type |
---|---|
accountID |
UUID string |
|
|
Get representative
Retrieve a specific representative associated with a given Moov account.
To get representatives, you’ll need to specify the /accounts/{accountID}/representatives.read
scope when generating a token.
Parameters
Name | Type |
---|---|
accountID |
UUID string |
representativeID |
UUID string |
|
|
Delete representative
Deletes a business representative associated with a Moov account.
To delete a representative, you’ll need to specify the /accounts/{accountID}/representatives.write
scope when generating a token.
Parameters
Name | Type |
---|---|
accountID |
UUID string |
representativeID |
UUID string |
|
|
Update representative
If a representative’s information has changed and you need to update it, you can use this method to change any of the fields associated with that particular representative.
To update a representative, you’ll need to specify the /accounts/{accountID}/representatives.write
scope when generating a token.
Parameters
Name | Type |
---|---|
accountID |
UUID string |
representative |
Representative |
|
|