**Source URL:** https://limited.veevavault.dev/commercial/vault-api/api-reference/24.1/documents/export-documents/retrieve-document-export-results.md

# Retrieve Document Export Results



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

Before submitting this request:

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

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

* You must be a Vault Owner, System Admin or the user who initiated the job.

<Endpoint path="/api/{version}/objects/documents/batch/actions/fileextract/{jobid}/results" method="GET"></Endpoint>

## Headers {#headers}

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

## 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 document requests above. |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v17.3/objects/documents/batch/actions/fileextract/82701/results

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "data": [
        {
            "responseStatus": "SUCCESS",
            "id": 23,
            "major_version_number__v": 0,
            "minor_version_number__v": 1,
            "file": "/82701/23/0_1/New Document.png",
            "user_id__v": 88973
        }
    ]
}

```
</CodeExample>

## Response Details {#response-details}

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



---

**Previous:** [Export Document Versions](/commercial/vault-api/api-reference/24.1/documents/export-documents/export-document-versions)  
**Next:** [Document Events](/commercial/vault-api/api-reference/24.1/documents/document-events)