For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update Business Representatives

Read for details on adding, updating and retrieving business representatives

PATCH /users/{{user_id}}/business-representative/{{id}}

Updatable fields for business representative

Fields

Send user is verified

Send user is not verified

Additional details

first_name

Yes

Yes

middle_name

Yes

Yes

last_name

Yes

Yes

date_of_birth

Yes

Yes

address_line1

Yes

Yes

city

Yes

Yes

state

Yes

Yes

country

No

No

zipcode

Yes

Yes

br_type

No

No

virtual_documents

Yes

Yes

physical_documents

Yes

Yes

Updating physical_document object will add a new copy of the document and archive the older one.

curl --location --request PATCH '{{url}}/users/{{user_id}}/business-representative/{{id}}' \
--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": "North Pole",
    "state": "CA",
    "country": "US",
    "zipcode": "99705",
    "address_line1": "123 Main Street Room 22",
    "date_of_birth": "1997-09-08",
    "physical_documents": [
        {
            "document_value": "data:image/jpg;base64,SUQsasasasas909090==",
            "document_value_back": "data:image/jpg;base64,SUQsasasas()()==",
            "document_type": "DRIVING_LICENCE"
        }
    ],
    "virtual_documents": [
        {
            "document_value": "222222222",
            "document_type": "SSN"
        }
    ]
}'

Last updated