# Update Business Representatives

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

{% tabs %}
{% tab title="Details" %}
**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. |
| {% endtab %}        |                           |                               |                                                                                                   |

{% tab title="Request Sample" %}

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

{% endtab %}

{% tab title="Response Sample" %}

```
{
    "address_line1": "123 Main Street Room 22",
    "city": "North Pole",
    "date_of_birth": "1997-09-08",
    "email":"jonh.sherpa@yahoo.com",
    "first_name": "John",
    "gender":"male",
    "id": {{UUID}},
    "last_name": "Sherpa",
    "mobile_phone":"5417543010",
    "ownership_percentage":0,
    "physical_documents": [
        {
            "id": {{UUID}},
            "document_type": "DRIVING_LICENCE"
        }
    ],
    "state": "CA",
    "title":"CEO",
    "virtual_documents": [
        {
            "document_value": "*****2222",
            "id": {{UUID}},
            "document_type": "SSN"
        }
    ],
    "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/update-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.
