Get Import Job

Get Import Job

GET https://{{accountSlug}}.myeshopbox.com/api/platform/v1/import-job/:id

This endpoint allows you to get import job.

Path Parameters

NameTypeDescription

id

number

Id to define the import job uniquely.

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API.

{
    "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"
}
curl --location --request GET 'https://{{accountSlug}}.myeshopbox.com/api/platform/v1/import-job/1822' \
--header 'Content-Type: application/json' \
--header 'Authorization: {{Access-Token}}'

Last updated