Properties
| Name | Type | Description |
|---|---|---|
| billingEntityId | string | The identification of the billing entity to use for the order. |
| customerOrderReference | string | The merchant-defined purchase order reference. |
| items | array | The products included in the order. |
| orderType | string | Type of order |
| shippingLocationId | string | The identification of the shipping location to use for the order. |
| taxId | string | The tax number of the billing entity. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TerminalOrderRequest",
"title": "TerminalOrderRequest",
"properties": {
"billingEntityId": {
"description": "The identification of the billing entity to use for the order.",
"type": "string"
},
"customerOrderReference": {
"description": "The merchant-defined purchase order reference.",
"type": "string"
},
"items": {
"description": "The products included in the order.",
"items": {
"$ref": "#/components/schemas/OrderItem"
},
"type": "array"
},
"orderType": {
"description": "Type of order",
"type": "string"
},
"shippingLocationId": {
"description": "The identification of the shipping location to use for the order.",
"type": "string"
},
"taxId": {
"description": "The tax number of the billing entity.",
"type": "string"
}
},
"type": "object"
}