Jobs
Your Emporix tenant's name.
Note: The tenant
should always be written in lowercase.
Site code, defined when a site is created.
Page number to be retrieved. The number of the first page is 1.
Note: If the pageNumber
parameter is passed, size of the pages must be specified in the pageSize
parameter.
1
Number of export files to be retrieved per page.
16
List of properties used to sort the results, separated by commas. Possible values:
ASC
DESC
DESC
Possible values: List of jobs
Request syntactically incorrect. Any details will be provided within the response payload.
Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
GET /sepa-export/{tenant}/jobs HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"jobId": "text",
"status": "text",
"siteCode": "text",
"fileId": "text",
"active": true,
"ordersExportedCount": 1,
"createdAt": "2025-08-23T04:44:26.463Z",
"completedAt": "2025-08-23T04:44:26.463Z"
}
]
Your Emporix tenant's name.
Note: The tenant
should always be written in lowercase.
New job id
Request syntactically incorrect. Any details will be provided within the response payload.
Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
Another job is in progress. You can have only one job at the same time.
POST /sepa-export/{tenant}/jobs HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"siteCode": "main"
}
{
"id": "text"
}
Was this helpful?