Representatives
Update a representative
Updates an existing representative's information. This can be used to update personal details, contact information, or the relationship to the account or organization.
put/v1/representatives/{representative_id}
Path parameters
representative_idstring uuid required
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
{
"first_name": "Ron",
"last_name": "Swanson",
"dob": "1980-01-01",
"ssn_last4": "1234",
"email": "ron.swanson@pawnee.com",
"mobile_number": "+12128675309"
}Response
OK
Example response
{
"data": {
"first_name": "Ron",
"last_name": "Swanson",
"dob": "1980-01-01",
"ssn_last4": "1234",
"email": "ron.swanson@pawnee.com",
"mobile_number": "+12128675309"
}
}