# Add Business Representatives

**`POST /users/{{user_id}}/business-representative`**

{% tabs %}
{% tab title="Request Sample" %}

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

{% endtab %}

{% tab title="Response Sample" %}

```
{
    "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",
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://paas.docs.machnetinc.com/api-references/user/business-representatives/add-business-representatives.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
