**Source URL:** https://general.veevavault.dev/vault-api/api-reference/26.1/binders/update-binders/update-binder.md

# Update Binder



Update editable field values on the latest version of a single binder.

<Endpoint path="/api/{version}/objects/binders/{binder_id}" method="PUT"></Endpoint>

## Headers {#headers}

| Name | Description |
| --- | --- |
| `Content-Type` | `application/x-www-form-urlencoded` |
| `Accept` | `application/json` (default) or `application/xml` |

## URI Path Parameters {#uri-path-parameters}

<FieldTable>
| Name | Description |
| --- | --- |
| `{binder_id}` | The binder `id` field value. |
</FieldTable>

## Body Parameters {#body-parameters}

In the body of the request, add any editable field values that you wish to update as name-value pairs. To remove existing field values, include the field name and set its value to null.

To find these fields for the specific binder, use [Retrieve Binder](/vault-api/api-reference/26.1/binders/retrieve-binders/retrieve-binder).

## Request {#request}

<CodeExample title="">
```
curl -X PUT -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "audience__c=Healthcare Provider" \
-d "country__v=1357662840400" \
https://myvault.veevavault.com/api/v15.0/objects/binders/566

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "id": 566
}

```
</CodeExample>

## Response Details {#response-details}

On `SUCCESS`, Vault updates field values for the latest version of the binder and returns the ID of the updated binder.



---

**Previous:** [Update Binders](/vault-api/api-reference/26.1/binders/update-binders)  
**Next:** [Reclassify Binder](/vault-api/api-reference/26.1/binders/update-binders/reclassify-binder)