Layer Seven Automation
  1. Orders
  • Auth
    • /l7a/auth/token
      POST
  • Orders
    • /l7a/api/wcs/orders/completed
      GET
    • /l7a/api/wcs/orders
      POST
    • /l7a/api/wcs/orders/process
      PUT
    • /l7a/api/wcs/orders/cancel
      PUT
    • /l7a/api/wcs/orders/cancel
      POST
    • /l7a/api/wcs/orders/complete
      PUT
  • Schemas
    • CancelOrderActionDto
    • Order
    • OrderActionDto
    • OrderDto
    • OrderLine
    • OrderLineDto
    • ProblemDetails
  1. Orders

/l7a/api/wcs/orders

POST
/l7a/api/wcs/orders

Request

Body Params application/json

Examples

Responses

🟢202
Accepted
This response does not have a body.
🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/l7a/api/wcs/orders' \
--header 'Content-Type: application/json' \
--data '[
    {
        "customerName": "string",
        "customerAddress": "string",
        "orderNumber": "string",
        "lines": [
            {
                "id": "string",
                "sku": "string",
                "itemName": "string",
                "unitOfMeasure": "string",
                "pickedWeight": 0,
                "targetQty": 0,
                "priority": 0,
                "batchLotNumber": "string",
                "dateTimeStamp": "2019-08-24T14:15:22.123Z"
            }
        ],
        "orderedAt": "2019-08-24T14:15:22.123Z"
    }
]'
Response Response Example
{
    "type": "string",
    "title": "string",
    "status": 0,
    "detail": "string",
    "instance": "string",
    "property1": "string",
    "property2": "string"
}
Modified at 2026-05-20 13:05:17
Previous
/l7a/api/wcs/orders/completed
Next
/l7a/api/wcs/orders/process
Built with