Shipments

  • shipments (array) - array of objects with shipment
    • shipment_id (int) - shipment ID
    • code (string) - shipment code
    • creation_time (datetime) - time of creation
  • project_name (string) - name of online store
{} Request JSON

{
    "project_name": "",
    "shipments": [
        {
            "shipment_id": "",
            "code": "",
            "creation_time": ""
        }
    ]
}

  • shipments (array) - array of objects with shipment
    • shipment_id (int) - shipment ID
    • code (string) - shipment code
    • last_update_time (datetime) - time of last update
  • project_name (string) - name of online store
{} Request JSON

{
    "project_name": "",
    "shipments": [
        {
            "shipment_id": "",
            "code": "",
            "last_update_time": ""
        }
    ]
}

  • shipments (array) - array of objects with shipment
    • shipment_id (int) - shipment ID
    • code (string) - shipment code
    • deletion_time (datetime) - time of deletion
  • project_name (string) - name of online store
{} Request JSON

{
    "project_name": ""
    "shipments": [
        {
            "shipment_id": "",
            "code": "",
            "deletion_time": ""
        }
    ]
}
Next article
Payments