**Source URL:** https://general.veevavault.dev/sitevault/vault-api/api-reference/22.3/documents/export-documents/retrieve-document-export-results

# 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" />

## Headers

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

## 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

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

## Response

<CodeExample title="">
```json
{
    "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

On SUCCESS, the response includes the following information:

---

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