Representatives
Create a representative
Creates a new representative associated with an account. Representatives are individuals who have legal authority or significant responsibility within the business.
post/v1/representatives
Headers
request-idstring
Optional client generated identifier to trace and debug a request.
correlation-idstring
Optional client generated identifier to trace and debug a series of requests.
idempotency-keystring
Optional client generated value to use for idempotent requests.
Request body
Example request
{
"dob": "1980-01-01",
"ssn_last4": "1234",
"email": "ron.swanson@pawnee.com",
"mobile_number": "+12128675309"
}Response
Created
Example response
{
"data": {
"first_name": "Ron",
"last_name": "Swanson",
"dob": "1980-01-01",
"ssn_last4": "1234",
"email": "ron.swanson@pawnee.com",
"mobile_number": "+12128675309"
}
}