The Parcel endpoint returns information regarding a given parcel. This broadly includes shipper and consignee address, delivery information, ETA timestamps and much more.
Parcel response
Authorization information is missing or invalid
Rate limit exceeded
Error message
{- "trackingId": "YUTKBBTN",
- "parcelNumber": "10362781851",
- "status": {
- "type": "DELIVERED",
- "detail": "NORMAL",
- "deliveredAt": "2022-01-15T14:33:25Z",
- "address": {
- "name": "Max Mustermann",
- "street": "GLS Germany-Straße",
- "number": "1-7",
- "postcode": 36286,
- "city": "Neuenstein",
- "country": "DE",
- "coordinates": {
- "lat": 50.9098881,
- "lng": 9.5806327
}
}, - "name": null
}, - "shipperId": "bmw",
- "jobType": "DELIVERY",
- "supportedCustomizedDeliveryTypes": [
- "DEPOSIT_PERMISSION"
], - "customizedDelivery": {
- "type": "DEPOSIT_PERMISSION",
- "createdAt": "2022-01-15T14:33:25Z",
- "location": "Carport",
- "description": "Hinter der Tonne"
}, - "fromAddress": {
- "name": "Max Mustermann"
}, - "toAddress": {
- "name": "Max Mustermann",
- "street": "GLS Germany-Straße",
- "number": "1-7",
- "postcode": 36286,
- "city": "Neuenstein",
- "country": "DE",
- "coordinates": {
- "lat": 50.9098881,
- "lng": 9.5806327
}
}
}
The Customization endpoint allows to set a delivery customization for a given parcel. This includes setting a neighbor delivery or deposit permission.
Parcel response
Authorization information is missing or invalid
Rate limit exceeded
Error message
{- "type": "DepositPermission",
- "createdAt": "2022-01-15T14:33:25Z",
- "location": "Carport",
- "description": "Hinter der Tonne"
}
{- "trackingId": "YUTKBBTN",
- "parcelNumber": "10362781851",
- "status": {
- "type": "DELIVERED",
- "detail": "NORMAL",
- "deliveredAt": "2022-01-15T14:33:25Z",
- "address": {
- "name": "Max Mustermann",
- "street": "GLS Germany-Straße",
- "number": "1-7",
- "postcode": 36286,
- "city": "Neuenstein",
- "country": "DE",
- "coordinates": {
- "lat": 50.9098881,
- "lng": 9.5806327
}
}, - "name": null
}, - "shipperId": "bmw",
- "jobType": "DELIVERY",
- "supportedCustomizedDeliveryTypes": [
- "DEPOSIT_PERMISSION"
], - "customizedDelivery": {
- "type": "DEPOSIT_PERMISSION",
- "createdAt": "2022-01-15T14:33:25Z",
- "location": "Carport",
- "description": "Hinter der Tonne"
}, - "fromAddress": {
- "name": "Max Mustermann"
}, - "toAddress": {
- "name": "Max Mustermann",
- "street": "GLS Germany-Straße",
- "number": "1-7",
- "postcode": 36286,
- "city": "Neuenstein",
- "country": "DE",
- "coordinates": {
- "lat": 50.9098881,
- "lng": 9.5806327
}
}
}
Checks if parcel is in delivery and real time tracking is available
Parcel is in delivery and available for real time tracking
Authorization information is missing or invalid
Parcel not found or not available for real time tracking
Rate limit exceeded
Error message
{- "timestamp": "2022-01-15T14:33:25Z",
- "path": "/v1/external/parcel",
- "status": 401,
- "error": "Unauthorized",
- "message": "Authorization required",
- "requestId": "331f2ea7-197"
}