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"
        }
    ]
}'

Last updated