orderId
or orders with the same externalOrderId
. Note that only one value may be present in the request.curl --location --request POST 'https://api.mediaconnect.no/capi/v1/order/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderId": 9,
"externalOrderId": "2342"
}'
{
"orders": [
{
"orderId": 9,
"externalOrderId": "2342",
"orderTime": 1559372400000,
"orderStatus": "preliminary",
"orderAmount": 295,
"orderLines": [
{
"productId": "CO27409",
"description": "",
"invoiceNumber": 7435367,
"invoiceTime": 1560290400,
"invoiceLineAmount": 295,
"invoiceStatus": "notInvoiced",
"deliveryStatus": "waiting"
}
]
}
]
}