Order statuses
Webhooks list
- Orders
- Order Statuses
- Products
- Availabilities
- Labels
- Categories
- Customers
- Shipments
- Payments
- Pricelists
- Languages
- Documents
OrderStatuses.create
statuses(array) - array of objects with order statusorder_status_id(string) - order status IDcreation_time(datetime) - time of creation
project_name(string) - name of online store
{} Request JSON
{
"statuses": [
{
"order_status_id": "",
"creation_time": ""
}
],
"project_name": ""
}
OrderStatuses.update
statuses(array) - array of objects with order statusorder_status_id(string) - order status IDlast_update_time(datetime) - time of update
project_name(string) - name of online store
{} Request JSON
{
"statuses": [
{
"order_status_id": "",
"creation_time": ""
}
],
"project_name": ""
}
OrderStatuses.delete
statuses(array) - array of objects with order statusorder_status_id(string) - order status IDdeletion_time(datetime) - time of deletion
project_name(string) - name of online store
{} Request JSON
{
"statuses": [
{
"order_status_id": "",
"creation_time": ""
}
],
"project_name": ""
}