**Source URL:** https://limited.veevavault.dev/medical/vault-api/api-reference/23.3/binders/binder-templates/retrieve-binder-template-collection.md

# Retrieve Binder Template Collection



Retrieve the collection of all binder templates in your Vault.

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

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v15.0/objects/binders/templates

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
   "responseStatus":"SUCCESS",
   "data":[
      {
         "name__v": "study_site_level_file_tmf_rm_30__c",
         "label__v": "Study Site Level File TMF RM 2.0",
         "active__v": true,
         "type__v": "trial_master_file__v",
         "subtype__v": null,
         "classification__v": null,
         "filing_model__v": "0MO000000000101"
      },
      {
         "name__v": "study_site_level_file_tmf_rm_20__c",
         "label__v": "Study Site Level File TMF RM 2.0",
         "active__v": "true",
         "type__v": "site_master_file__v",
         "subtype__v": null,
         "classification__v": null,
         "filing_model__v": "0MO000000000102"
      }
   ]
}

```
</CodeExample>

## Response Details {#response-details}

The response lists all binder templates which have been added to the Vault. Shown above, two binder templates exist in our Vault. Both exist at the document type level and are intended for use with the `compliance_package__v` type. For information about the document template metadata, refer to the "Retrieve Binder Template Attributes" response below.



---

**Previous:** [Retrieve Binder Template Node Metadata](/medical/vault-api/api-reference/23.3/binders/binder-templates/retrieve-binder-template-node-metadata)  
**Next:** [Retrieve Binder Template Attributes](/medical/vault-api/api-reference/23.3/binders/binder-templates/retrieve-binder-template-attributes)