Skip to main content
POST
/
carriers
/
dp
/
finalize-order
curl --request POST \
  --url https://panel.sendcloud.sc/api/v3/carriers/dp/finalize-order \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "copy_count": 1
}
'
{
"data": {
"copy_count": 1,
"awb_document_url": "/api/v3/parcels/12345/documents/air-waybill",
"next_order_id": "2"
}
}

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Body

application/json

Request schema for finalizing a Deutsche Post order.

copy_count
integer
default:1

Number of AWB label copies to generate (1-99)

Required range: 1 <= x <= 99

Response

Order finalized successfully

Response schema for finalize order endpoint.

data
FinalizeOrderDataSchema · object
required

Data schema for finalize order response.