# Get Import Job

## Get Import Job

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

This endpoint allows you to get import job.

#### Path Parameters

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

#### Headers

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

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

```
{
    "id": "1822",
    "jobType": "base.product",
    "channelId": "0",
    "importFilters": null,
    "filePath": "https://cdn.filestackcontent.com/ZDcGB6WQXGqJq5Hb9y81",
    "handleUrl": null,
    "successCount": null,
    "failureCount": null,
    "failedFilePath": null,
    "status": "0", 
    "additionalDetails": "this is temporary",
    "fileReadFailureReason": null,
    "userId": "70",
    "createdAt": "2019-12-11T17:19:06.000Z",
    "updatedAt": "2019-12-17T16:15:41.000Z"
}
```

{% endtab %}
{% endtabs %}

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

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

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://eshop.gitbook.io/eshopbox-developers/advanced/jobs/get-a-job.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
