**Source URL:** https://limited.veevavault.dev/commercial/vault-api/api-reference/18.1/binders/create-binders/create-binder.md

# Create Binder



Use this request to create a new binder in your Vault. Learn about [Creating Binders](https://platform.veevavault.help/en/lr/15089) in Vault Help.

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

## Headers {#headers}

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

## Query Parameters {#query-parameters}

All required binder (document) fields must be included in the request. When creating a binder, no file is included in the request.

## Request {#request}

<CodeExample title="">
```
curl -X POST -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "name__v=WonderDrug Compliance Package" \
-d "type__v=Compliance Package" \
-d "subtype__v=Professional" \
-d "lifecycle__v=Binder Lifecycle" \
-d "product__v=1357662840293" \
-d "major_version_number__v=0" \
-d "minor_version_number__v=1" \
https://myvault.veevavault.com/api/v15.0/objects/binders

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "responseMessage": "Successfully created binder.",
    "id": 563
}

```
</CodeExample>

---

**Previous:** [Create Binders](/commercial/vault-api/api-reference/18.1/binders/create-binders)  
**Next:** [Create Binder from Template](/commercial/vault-api/api-reference/18.1/binders/create-binders/create-binder-from-template)