Search batch requests by status
GET
https://app.ecwid.com/api/v3/{storeId}/batch?status=STATUS&limit=100
Required access scopes
This request does not require any access scopes.
Path params
All path params are required.
storeId
number
Ecwid store ID.
Query params
Some of the query params are required.
status
string
Search term for the current batch status.
One of:
QUEUED
– Find only batch requests that haven't been sarted yet.
IN_PROGRESS
– Find only batch requests in progress.
COMPLETED
– Find only completed batch requests.
Required
limit
number
Maximum number of returned items. Default and maximum allowed value: 100
Required
offset
number
Offset from the beginning of the returned items list. Used when the response contains more items than limit
allows to receive in one request.
Usually used to receive all items in several requests with multiple of a hundred, for example:
?offset=0
for the first request,
?offset=100
, for the second request,
?offset=200
, for the third request, etc.
Optional
Response JSON
A JSON object with the following fields:
ticket
string
Internal "ticket ID" assigned to the batch request.
status
string
Current status of the batch request.
One of:
QUEUED
– No requests inside the batch are yet completed. yet.
IN_PROGRESS
– At least one request inside the batch was already completed.
COMPLETED
– All requests inside the batch have been completed.
Last updated
Was this helpful?