Shipment creation
POST
/shipment/batch
ShipmentBatch
Purpose and usage
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/shipment/batch' \
--header 'Accept-Language;' \
--header 'X-Correlation-ID;' \
--header 'X-LogLevel;' \
--header 'Content-Type: application/json' \
--data-raw '{
"returnChannel": {
"type": "<string>",
"address": "<string>"
},
"labelSettings": {
"format": "<string>",
"dpi": "<integer>",
"completeLabelSettings": {
"isCompleteLabelRequested": "<boolean>",
"pageSize": "<string>",
"position": "<integer>"
}
},
"shipments": [
{
"productType": "<string>",
"recipient": {
"country": "<string>",
"zipCode": "<string>",
"name": "<string>",
"name2": "<string>",
"street": "<string>",
"city": "<string>",
"contact": "<string>",
"phone": "<string>",
"email": "<string>"
},
"referenceId": "<string>",
"shipmentNumber": "<string>",
"note": "<string>",
"depot": "<string>",
"ageCheck": "<string>",
"integratorId": "<integer>",
"shipmentSet": {
"numberOfShipments": "<integer>",
"shipmentSetItems": [
{
"shipmentNumber": "<string>",
"weighedShipmentInfo": {
"weight": "<double>"
},
"externalNumbers": [
{
"code": "<string>",
"externalNumber": "<string>"
},
{
"code": "<string>",
"externalNumber": "<string>"
}
],
"insurance": {
"insuranceCurrency": "<string>",
"insurancePrice": "<double>"
}
},
{
"shipmentNumber": "<string>",
"weighedShipmentInfo": {
"weight": "<double>"
},
"externalNumbers": [
{
"code": "<string>",
"externalNumber": "<string>"
},
{
"code": "<string>",
"externalNumber": "<string>"
}
],
"insurance": {
"insuranceCurrency": "<string>",
"insurancePrice": "<double>"
}
}
]
},
"backAddress": {
"country": "<string>",
"zipCode": "<string>",
"name": "<string>",
"name2": "<string>",
"street": "<string>",
"city": "<string>",
"contact": "<string>",
"phone": "<string>",
"email": "<string>"
},
"sender": {
"country": "<string>",
"zipCode": "<string>",
"name": "<string>",
"name2": "<string>",
"street": "<string>",
"city": "<string>",
"contact": "<string>",
"phone": "<string>",
"email": "<string>"
},
"senderMask": {
"country": "<string>",
"zipCode": "<string>",
"name": "<string>",
"name2": "<string>",
"street": "<string>",
"city": "<string>",
"contact": "<string>",
"phone": "<string>",
"email": "<string>"
},
"specificDelivery": {
"specificDeliveryDate": "<dateTime>",
"specificDeliveryTimeFrom": "<dateTime>",
"specificDeliveryTimeTo": "<dateTime>",
"specificTakeDate": "<dateTime>",
"parcelShopCode": "<string>"
},
"cashOnDelivery": {
"codCurrency": "<string>",
"codPrice": "<double>",
"codVarSym": "088919",
"iban": "<string>",
"swift": "<string>",
"specSymbol": "<string>",
"account": "<string>",
"accountPre": "<string>",
"bankCode": "<string>"
},
"insurance": {
"insuranceCurrency": "<string>",
"insurancePrice": "<double>"
},
"externalNumbers": [
{
"code": "<string>",
"externalNumber": "<string>"
},
{
"code": "<string>",
"externalNumber": "<string>"
}
],
"services": [
{
"code": "<string>"
},
{
"code": "<string>"
}
],
"dormant": {
"shipmentNumber": "<string>",
"note": "<string>",
"recipient": {
"country": "<string>",
"zipCode": "<string>",
"name": "<string>",
"name2": "<string>",
"street": "<string>",
"city": "<string>",
"contact": "<string>",
"phone": "<string>",
"email": "<string>"
},
"externalNumbers": [
{
"code": "<string>",
"externalNumber": "<string>"
},
{
"code": "<string>",
"externalNumber": "<string>"
}
],
"services": [
{
"code": "<string>"
},
{
"code": "<string>"
}
],
"weighedShipmentInfo": {
"weight": "<double>"
}
},
"shipmentRouting": {
"inputRouteCode": "28696"
},
"directInjection": {
"directAddressing": "<boolean>",
"gatewayZipCode": "<string>",
"gatewayCity": "<string>",
"country": "<string>"
},
"labelService": {
"labelless": "<boolean>"
}
}
],
"returnChannel": {
"type": "None",
"address": "<string>"
},
"labelSettings": {
"format": "Svg",
"dpi": "<integer>",
"completeLabelSettings": {
"isCompleteLabelRequested": "<boolean>",
"pageSize": "A4",
"position": "<integer>"
}
},
"shipmentsOrderBy": "<string>"
}'
Response Response Example
201 - Example 1
{}
Request
Header Params
Accept-Language
string
optional
X-Correlation-ID
string
optional
X-LogLevel
enum<string>
optional
Allowed values:
TraceDebugInformationWarningErrorCritical
Body Params application/json
Responses
Modified at 2025-03-25 11:33:13