Get a Job File
GET/v2/jobs/:jobID/file
Retrieves a link to the CSV file that contains your exported order.
Request
Path Parameters
jobID stringrequired
The unique identifier of the job whose CSC file you want to retrieve.
Responses
- 200
- 404
- 500
- application/json
- Schema
- Example (from schema)
Schema
data object
A link to the exported data.
href string
The publicly available URL for this CSV file that contains the exported data.
{
"data": {
"href": "string"
}
}
Forbidden. The operation is forbidden on this entity.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
errors Error[]required
status intrequired
The HTTP response code of the error.
title stringrequired
A brief summary of the error.
detail string
Optional additional detail about the error.
request_id string
Internal request ID.
meta object
Additional supporting meta data for the error.
{
"title": "Resource Not Found",
"status": 404,
"detail": "The resource you are requesting does not exist"
}
Internal server error. There was a system failure in the platform.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
- Array [
- ]
errors Error[]required
status intrequired
The HTTP response code of the error.
title stringrequired
A brief summary of the error.
detail string
Optional additional detail about the error.
request_id string
Internal request ID.
meta object
Additional supporting meta data for the error.
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred.",
"request_id": "00000000-0000-0000-0000-000000000000",
"meta": {
"missing_ids": [
"e7d50bd5-1833-43c0-9848-f9d325b08be8"
]
}
}
]
}
{
"errors": [
{
"status": 500,
"title": "Internal Server Error",
"detail": "There was an internal server error, you can report with your request id.",
"request_id": "635da56d-75a1-43cd-b696-7ab119756b3a"
}
]
}
Loading...