Add Business Representatives
Read for details on adding business representatives
POST /users/{{user_id}}/business-representative
curl --location --request POST '{{url}}/users/{{user_id}}/business-representative' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "John",
"middle_name": null,
"last_name": "Sherpa",
"city": "San Jose",
"email":"john.sherpa@yahoo.com",
"gender": "male",
"mobile_phone": "5417543010",
"state": "CA",
"country": "US",
"zipcode": "99705",
"address_line1": "123 Main Street Room 22",
"date_of_birth": "1997-09-08",
"br_type": {
"account_operator": true,
"beneficial_owner": false,
"compliance": false,
"primary_controller": false
},
"title":"CEO",
"virtual_documents": [
{
"document_value": "111111111",
"document_type": "SSN",
"country": "US",
"state": "CA",
"issue_date": "2018-01-01",
"id_issuing_authority": "POTUS"
}
],
"physical_documents": [
{
"document_value": "data:image/jpg;base64,SUQsasasasas909090==",
"document_value_back": "data:image/jpg;base64,SUQsasasasas909090==",
"document_type": "PASSPORT",
"country": "US",
"state": "CA",
"expiry_date": "2023-11-11"
}
]
}'
{
"address_line1": "123 Main Street Room 22",
"city": "North Pole",
"date_of_birth": "1997-09-08",
"email":"john.sherpa@yahoo.com"
"first_name": "John",
"gender":"male",
"id": {{UUID}},
"last_name": "Sherpa",
"mobile_phone": "5417543010",
"ownership_percentage":0,
"physical_documents": [
{
"country": "US",
"expiry_date": "2023-11-11",
"id": "b40d5340-7a39-400c-a85b-38526e6cfb86",
"state": "CA",
"document_type": "PASSPORT"
}
],
"state": "CA",
"title": "CEO",
"virtual_documents": [
{
"country": "US",
"document_value": "*****1111",
"id": {{UUID}},
"state": "CA",
"document_type": "SSN",
"id_issuing_authority": "POTUS",
"issue_date": "2018-01-01"
}
],
"zipcode": "99705",
"br_type": {
"account_operator": true,
"beneficial_owner": false,
"compliance": false,
"primary_controller": false
},
"country": "US",
}
Last updated