**Source URL:** https://limited.veevavault.dev/quality/vault-api/api-reference/21.3/binders/binder-documents/add-document-to-binder.md

# Add Document to Binder



Add a document to a binder.

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

## Headers {#headers}

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

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

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

## Body Parameters {#body-parameters}

## Request {#request}

<CodeExample title="">
```
curl -X POST -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "document_id__v=585" \
-d "parent_id__v=1427232809771:1381853041" \
-d "section_id__v=1" \
-d "binding_rule__v=steady-state" \
https://myvault.veevavault.com/api/v15.0/objects/binders/566/documents

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "id": "1427491342404:-1828014479"
}

```
</CodeExample>

---

**Previous:** [Binder Documents](/quality/vault-api/api-reference/21.3/binders/binder-documents)  
**Next:** [Move Document in Binder](/quality/vault-api/api-reference/21.3/binders/binder-documents/move-document-in-binder)