Get a Job File
GEThttps://api.moltin.com/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
{
"data": {
"href": "string"
}
}
Forbidden. The operation is forbidden on this entity.
- application/json
- Schema
- Example (from schema)
Schema
errors Error[]required
{
"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
errors Error[]required
{
"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"
}
]
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.moltin.com/v2/jobs/:jobID/file' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear