Price method
GET /v2/europe/price
Uri parameters
| Name | Description | Type | Additional description |
|---|---|---|---|
| CustomerId | This is not the domestic customer id. This is the Price Online id. | String | Required |
| CustomerIdValidator | Only used in special cases. Don't use it if you are not told to. | String | |
| CustomerIdClient | Only used in special cases. Don't use it if you are not told to. | String | |
| ProductCode | Product code. Request the Product API for details of all alternatives. Examples: '43' (System), '44' (System premium) | String | Required |
| Services | Service types, List of strings. Note, to send a list in the URL, repeat them. E.g: ?service=1&service=2. Request the Product API for details of all alternatives. Example: '16' (Pre-notice e-mail), '35' (Fix Day) | String | |
| OriginCountry | A valid 2 letter ISO country code. | String | Required |
| OriginPostalCode | A valid postal code. | String | Required |
| DestinationCountry | A valid 2 letter ISO country code. | String | Required |
| DestinationPostalCode | A valid postal code. | String | Required |
| Weight | Gross weight in kg. | String | Required |
| Volume | Volume in cubic meters (length × width × height). | String | |
| IsDangerousGoods | If you send dangerous goods, this must be true. | Boolean | |
| Currency | The 3 letter ISO code for the desired pricing currency. E.g. NOK | String | Required |
| ShipmentCategory | Three options: import, export or domestic | ShipmentCategoryEnum | Required |
| Terms | Four options: EXW (Ex Works), CPT (Carr Paid To buyers premise), DDU (Del buyers prem duty unpaid), DDP (Del buyers prem duty paid) | TermsEnum | Required |
Body parameters
None
Request body sample:
None
Response sample:
{
"Currency": "sample string 1",
"Total": "sample string 2",
"Details": {
"FreightPrice": "sample string 1",
"OtherCosts": "sample string 2",
"OtherCostsDetails": [
{
"Code": "sample string 1",
"Description": "sample string 2",
"Amount": "sample string 3"
}
]
},
"Error": {
"Code": "sample string 1",
"Description": "sample string 2"
}
}