# Get Export Job

## Get Export Job

<mark style="color:blue;">`GET`</mark> `https://{{accountSlug}}.myeshopbox.com/platform/api/v1/export-job/:id`

This endpoint allows you to get export job.

#### Path Parameters

| Name | Type   | Description                           |
| ---- | ------ | ------------------------------------- |
| id   | number | id to define the export job uniquely. |

#### Headers

| Name          | Type   | Description                             |
| ------------- | ------ | --------------------------------------- |
| Authorization | string | The Bearer token to grant access to API |

{% tabs %}
{% tab title="200 Export Job successfully retrieved." %}

```
{
    "id": "3675",
    "jobType": "order_return",
    "channelId": "0",
    "fileType": "CSV",
    "exportFilters": {
        "orderCreatedDateRange": "{}",
        "skuStyleCodeEanDropdown": "",
        "orderItemID": "",
        "channel": "",
        "combo": "NO",
        "invoiceDateRange": "{}",
        "vertical": "",
        "styleCode": "",
        "customerOrderNumber": "",
        "warehouseName": "",
        "skuStyleCodeEanDropdownValue": "",
        "ean": "",
        "portalName": "",
        "paymentMethod": "COD",
        "orderShipedDateRange": "{}",
        "sku": "",
        "brand": "",
        "status": "CREATED"
    },
    "filePath": "",
    "status": "0",
    "userId": "70", 
    "createdAt": "2019-12-19T19:16:25.000Z",
    "updatedAt": "2019-12-19T19:16:25.000Z"
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="cURL" %}

```
curl --location --request GET 'https://{{accountSlug}}.myeshopbox.com/platform/api/v1/export-job/3675' \
--header 'Content-Type: application/json' \
--header 'Authorization: {{Access-Token}}' 
```

{% endtab %}
{% endtabs %}
