DUO
Currently, only GEL supports DUO. it means delivery to the point of use [2-man-handling].
The 2-person delivery has a few special features or mandatory values that must be recorded.
signatureOption
TheSIGNATURE_REQUIRED
option must be selectedrecipient.contact.phoneNumber
requireditemLines.declaredInfo
Required
Request Parameter
serviceType
serviceType
must be of the following types for DUO :
Parameter | Text (Label) | Description | Additional Information | Run times(24h) |
---|---|---|---|---|
DO | 2-Mann Overnight | DUO | delivery to the point of use [2-man-handling] | up to 5 days |
DP | 2-Mann-Palette | DUO palletized | delivery to the point of use [2-man-handling] | up to 5 day |
specialServiceTypes
field path:itemLines/specialService/specialServiceTypes
Property | Description |
---|---|
DUO | 2-man-handling service |
specialServiceAttributeList
field path:itemLines/specialService/specialServiceAttributeList
This is a list of dynamic parameters, the Key represents the parameter name, and the Value represents the parameter value
Key | Description |
---|---|
duocolli | [required] AMOUNT of Colli SERVICE “DUO“ and ADDED VALUE “UNO“ |
duoold | AMOUNT of used parts (disposal) |
we need the NUMBER of collo to be carried to the point of use this can be different from the number of collo of the shipment (but doesn´t have to be!) 1 Shipment 1 DUOCOLLI is also o.k.
but Example: 1 pallet with 2 televisions on it (means 1 shipment), but 2 televisions has be carried to the point of use.
e.g.
//amount of Colli has to be carried to point of use
duocolli=amount
2
If you have a shipment with Service DUO or UNO (means carry up on colli to a specific place – carport, garden, 2nd Floor etc.) you have to specify the amount of colli to carry, as well as the amount of shipping colli. That might be the same, but don´t have to.
e.g. you have one pallet with three boxes on it: you ship one collo, but ask to us carry up 3 colli that leads to : &collicnt=1&duocolli=3 please note that Service DO/DP and Added Value U always expected (mandatory) a duocolli value, otherwise your api call will run into an error message.
Example
This example shows the request parameters of the package special service field specialService when purchasing a dangerous goods shipping label
"specialService": {
"specialServiceTypes": ["DUO"],
"specialServiceAttributeList": [
{
"key": "duocolli",
"value": 2
},
{
"key": "duoold",
"value": 0
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16