**Source URL:** https://general.veevavault.dev/sitevault/vault-api/api-reference/26.1/binders/export-binders/retrieve-binder-export-results.md

# Retrieve Binder Export Results



After submitting a request to export a binder from your Vault, you can query Vault to determine the results of the request.

Before submitting this request:

* You must have previously requested a binder export job (via the API) which is no longer active.

* You must have a valid `job_id` value (retrieved from the export binder request).

<Endpoint path="/api/{version}/objects/binders/actions/export/{job_id}/results" method="GET"></Endpoint>

## Headers {#headers}

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

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

<FieldTable>
| Name | Description |
| --- | --- |
| `{job_id}` | The `id` value of the requested export job. This is returned with the export binder requests above. |
</FieldTable>

## Request {#request}

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

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
  "responseStatus": "SUCCESS",
  "job_id": 1201,
  "id": 454,
  "major_version_number__v": 1,
  "minor_version_number__v": 0,
  "file": "/1201/454/1_0/Nyaxa Compliance Package.zip",
  "user_id__v": 44533
}

```
</CodeExample>

## Response Details {#response-details}

On `SUCCESS`, the response includes the following information:

<FieldTable>
| Field Name | Description |
| --- | --- |
| `job_id` | The Job ID value of the binder export request. |
| `id` | The `id` value of the exported binder. |
| `major_version_number__v` | The major version number of the exported binder. |
| `minor_version_number__v` | The minor version number of the exported binder. |
| `file` | The path/location of the downloaded binder ZIP file. |
| `user_id__v` | The `id` value of the Vault user who initiated the binder export job. |
</FieldTable>

---

**Previous:** [Export Binder Sections](/sitevault/vault-api/api-reference/26.1/binders/export-binders/export-binder-sections)  
**Next:** [Download Exported Binder Files](/sitevault/vault-api/api-reference/26.1/binders/export-binders/download-exported-binder-files-via-file-staging)