Orders

  • project_name (string) - name of online store
  • orders (array) - array of objects with orders
    • order_number (string) - order number
    • creation_time (datetime) - time of creation
    • status_id (int) - order status ID
    • status (string) - order status, in the language of the order (it is better to use ID for matching)
{} Request JSON

{
    "project_name": "",
    "orders": [
        {
            "order_number": "",
            "creation_time": "",
            "status_id": "",
            "status": ""
        }
    ]  
} 

  • project_name (string) - name of online store
  • orders (array) - array of objects with orders
    • order_number (string) - order number
    • last_update_time (datetime) - time of last update
    • status_id (int) - order status ID
    • status (string) - order status, in the language of the order (it is better to use ID for matching)
{} Request JSON

{
    "project_name": "",
    "orders": [
        {
            "order_number": "",
            "last_update_time": "",
            "status_id": "",
            "status": ""
        }
    ]  
}  

  • project_name (string) - name of online store
  • orders (array) - array of objects with orders
    • order_number (string) - order number
    • deletion_time (datetime) - time of deletion
{} Request JSON

{
    "project_name": "",
    "orders": [
        {
            "order_number": "",
            "deletion_time": "",
        }
    ]  
} 

Changelog

Datum Typ Změna
5.9.2024 Orders.create, Orders.update, Orders.delete The optimization of the maximum number of records that the endpoint returns is 5000. More records are coming in the next request.
Next article
Order statuses