List order statuses
Returns a paginated list of your order statuses, sorted by creation date by default. Order statuses are referenced from orders.status_id. Statuses are language-scoped (one record per status_id × lang). Supports filters, order, limit, offset, and fields to refine the response.
Parameters
Header Parameters
[Authentication] Required API key.
"^[a-zA-Z0-9-]{20,64}$"Query Parameters
Subset of order status fields to return. Comma-separated string or repeated query parameter.
"id""status_id""shop_id""name""lang""is_active""is_deleted""created_at""updated_at""data_source_id"Maximum number of records to return
10Number of records to skip
0Sorting criteria, array of objects with field and type properties
{
"field": "created_at",
"type": "desc"
}Filter criteria, array of objects with field, operator and values properties.
Available operators: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS, STARTS_WITH, ENDS_WITH, LESS_THAN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN, GREATER_THAN_OR_EQUAL_TO, IN, NOT_IN, LIKE, BETWEEN, NOT_BETWEEN
{
"field": "status",
"operator": "EQUALS",
"values": "active"
}Responses
Paginated listing response.
List order statuses Returns a paginated list of your order statuses, sorted by creation date by default. Order statuses are referenced from orders.status_id. Statuses are language-scoped (one record per status_id × lang). Supports filters, order, limit, offset, and fields to refine the response. GET /v1/orders-statuses listOrdersStatuses Orders statuses spm-api-key [Authentication] Required API key. fields Subset of order status fields to return. Comma-separated string or repeated query parameter. limit Maximum number of records to return offset Number of records to skip order Sorting criteria, array of objects with field and type properties filters Filter criteria, array of objects with field, operator and values properties. Available operators: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS, STARTS_WITH, ENDS_WITH, LESS_THAN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN, GREATER_THAN_OR_EQUAL_TO, IN, NOT_IN, LIKE, BETWEEN, NOT_BETWEEN Paginated listing response. Client error - Invalid request or authentication issues Server error - Internal processing failure