Shipping Guide API
The Shipping Guide API provides available services for a given combination of sender and recipient locations, including estimated delivery times, prices and environmental data. It also returns logo and human readable service descriptions that can be shown in your checkout. Available services are based on your agreement with Bring (i.e. the customer numbers attached to your user).
Authentication
To integrate with the Bring APIs, you will need a Mybring user account with an API key. Information about prerequisites and authentication headers can be found on the general API Getting Started page.
Rate limiting
Clients exceeding 120 requests per second will be throttled, and the response will contain http status code 429. If you have a use case requiring rates above the limit, please contact developer-booking@bring.com for assistance.
Formats
Both XML and JSON over HTTP. The POST requests can be used for multiple consignments.
Special topics
- Using Shipping Guide API
- Price
- Lead time
- Lead time depends on the recipient’s postal code and address
- Estimated arrival time for domestic and cross-border parcel and cargo services
- Get alternative expected delivery dates
- Holidays and Home Delivery
- Environmental data
- Svalbard
Tips and guides
The importance of provided shipping date
Providing the actual shipping date in the request is a prerequisite for getting the correct lead times, as the lead time is always calculated from the day and time when the parcel arrives at a Bring terminal. It is recommended to read this guide for a better understanding of how the provided shipping date affects the returned lead time.
NOTE: In absence of a shipping date set by the user, the Shipping Guide API will default to now
. If shipping date is set to now
, lead times will be calculated on the assumption that the packages has just arrived at a terminal.
Holidays, weekends and lead time
When lead times are calculated, the returned estimates are always adjusted for weekends and official holidays. You will therefore never receive an estimate on a date we do not deliver. You can trust that the returned estimates are as accurate as possible.
NOTE: The provided shipping date is never adjusted for weekends and holidays. If you provide a shipping date that happens to be a sunday, the returned lead time would still be calculated with this date as the time the parcel has arrived at a terminal.
Endpoints
- Base URL
https://api.bring.com/shippingguide
- OpenAPI document
- https://api.bring.com/shippingguide/api-docs
Usage | Method | Endpoint |
---|---|---|
Fetch shipping details | POST |
/api/v2/products
|
Fetch shipping details
- POST
-
https://api.bring.com/shippingguide/api/v2/products
Use this endpoint to get expected delivery, prices, service categories and additional information.
Measurements
For cargo services(5100, 5300, 9100, CARGO), Weight is mandatory and one of the Volume / Load Meter / Dimensions / Number of Pallets is mandatory.
Note: The prices for our revised services depends on volumetric weight: 5000, 5100, 5300, 5600, 5800, 4850 plus return services 9000, 9100, 9300 or 9600. For these services, dimensions (L/W/H) is needed to calculate the expected price correctly. Dimensions are also used to decide if handling fee or specialgoods fee will apply to the shipment. You might leave dimensions empty in your request, but be aware that returned prices might be incorrect.
Request
header parameters
-
X-Mybring-API-Uid
Required -
- Description
- Mybring login ID
- Type
- string
-
X-Mybring-API-Key
Required -
- Description
- Your user's API key
- Type
- string
-
Accept
-
- Description
- Desired output media type
- Type
- string
- Enum
application/json
application/xml
Body schema
-
Required
- List of consignmentsarray of objects
- Additional services to be addedarray of objects
-
id
Required - Additional service idstring
-
-
addressLine
- The street name and number the consignment is to be delivered tostring
- object
-
unNumbers
Required- List of dangerous goods ADR-codesarray of strings
-
- string
-
-
fromCountryCode
Required - Two-letter ISO-3166-1 country code of which consignment is sent fromstring
-
fromPostalCode
Required - The postal code the consignment is sent fromstring
-
id
- Your internal reference to this consignment (you may calculate several consignment at the same time)string
-
incoterms
- International commercial termsstring
-
Required
- List of all packages in the consignmentarray of objects
-
grossWeight
- The weight of the package in gramnumber <double>
-
height
- Height of the package in centimetersnumber <double>
-
id
- Your internal reference to this package (you may estimate several packages at the same time)string
-
length
- Length of the package in centimeters. The highest value of height, width and length will always be used as lengthnumber <double>
-
loadMeter
- Loading meters. Only applicable for cargo products number <double>
-
nonStackable
- Set to true if you know the package/pallet is non-stackableboolean
-
numberOfPallets
- Number of pallets. Only applicable for cargo productsinteger <int32>
-
volume
- The volume of the package in cubic decimetersstring
-
volumeSpecial
- Set to true if you know the package price will be adjusted for special volume. Typically used for roll or other weirdly shaped packages.boolean
-
width
- Width of the package in centimetersnumber <double>
-
-
pickupPointId
- The pickup point id to which the consignment is to be shipped to. Only relevant for parcel productsstring
- List of pickup points for which estimated delivery time should be calculated for (if varue of 'WithEstimatedDeliveryTime' is true). If not provided, the default pickup point for the receiver's postal code will be used.array of objects
-
id
Required - Pickup point idstring
-
-
Required
- List of all services price and lead times should be calculated forarray of objects
-
Payer
- Which party will pay for the shipmentstring
- Enum
-
SENDER
-
RECEIVER
-
THIRD_PARTY
-
customerNumber
- The mybring API customer number. Different customer numbers exist for different services, therefore the customer number is specified for each requested service. If a valid customer number is supplied, net prices will be returned for the specified service. Otherwise list (gross) prices is returned.string
-
id
Required - The service idstring
-
nonStandardCourierService
- Required field when requesting non standard courier products. Represents the customer specific service codestring
-
- The date (and optionally time) the consignment will be shipped (used for computing estimated delivery date). NOTE: The lead time calculation interprets the provided date & time as the time when the consignment has been scanned at the terminal. If not provided, now() will be usedobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
toCity
- The city the consignment is to be delivered tostring
-
toCountryCode
Required - Two-letter ISO-3166-1 country code of which consignment is sent tostring
-
toPostalCode
Required - The postal code the consignment is to be delivered tostring
-
edi
- Should the parcel be registered using EDI when shipped. Note that this flag may affect price and which services are availableboolean
-
language
- Language in which human-readable message should be returned.string
- Enum
-
NO
-
SE
-
SV
-
DA
-
EN
-
numberOfAlternativeDeliveryDates
- Number of alternative delivery dates to be suggestedinteger <int32>
-
postingAtPostoffice
- Will the parcel be delivered at a post office when shippedboolean
-
withEnvironmentalData
- Return environmental data about fossil free and electric transportation used on the shipments transport legsboolean
-
withEstimatedDeliveryTime
- Extended lead time information, including predicted arrivar time at pickup point. Only supported for a limited set of servicesboolean
-
withExpectedDelivery
- Controls whether lead times should be calculated or notboolean
-
withGuiInformation
- Return detailed information about requested service(s)boolean
-
withPrice
- Controls whether prices should be calculated. If customerNumber is supplied, the authenticated user requires the financial role with the provided customerboolean
- object
-
-
Required
- List of consignmentsarray
-
- object
-
- Additional services to be addedarray
-
- Additional serviceobject
-
-
id
Required - Additional service idstring
-
-
addressLine
- The street name and number the consignment is to be delivered tostring
- object
-
-
Required
- List of dangerous goods ADR-codesarray
-
-
- string
-
-
-
fromCountryCode
Required - Two-letter ISO-3166-1 country code of which consignment is sent fromstring
-
fromPostalCode
Required - The postal code the consignment is sent fromstring
-
id
- Your internal reference to this consignment (you may calculate several consignment at the same time)string
-
incoterms
- International commercial termsstring
-
Required
- List of all packages in the consignmentarray
-
- Describing the package detailsobject
-
-
grossWeight
- The weight of the package in gramnumber <double>
-
height
- Height of the package in centimetersnumber <double>
-
id
- Your internal reference to this package (you may estimate several packages at the same time)string
-
length
- Length of the package in centimeters. The highest value of height, width and length will always be used as lengthnumber <double>
-
loadMeter
- Loading meters. Only applicable for cargo products number <double>
-
nonStackable
- Set to true if you know the package/pallet is non-stackableboolean
-
numberOfPallets
- Number of pallets. Only applicable for cargo productsinteger <int32>
-
volume
- The volume of the package in cubic decimetersstring
-
volumeSpecial
- Set to true if you know the package price will be adjusted for special volume. Typically used for roll or other weirdly shaped packages.boolean
-
width
- Width of the package in centimetersnumber <double>
-
-
pickupPointId
- The pickup point id to which the consignment is to be shipped to. Only relevant for parcel productsstring
- List of pickup points for which estimated delivery time should be calculated for (if varue of 'WithEstimatedDeliveryTime' is true). If not provided, the default pickup point for the receiver's postal code will be used.array
-
- Pickup pointobject
-
-
id
Required - Pickup point idstring
-
-
Required
- List of all services price and lead times should be calculated forarray
-
- A service you want price and lead times calculated forobject
-
-
Payer
- Which party will pay for the shipmentstring
- Enum
-
SENDER
-
RECEIVER
-
THIRD_PARTY
-
customerNumber
- The mybring API customer number. Different customer numbers exist for different services, therefore the customer number is specified for each requested service. If a valid customer number is supplied, net prices will be returned for the specified service. Otherwise list (gross) prices is returned.string
-
id
Required - The service idstring
-
nonStandardCourierService
- Required field when requesting non standard courier products. Represents the customer specific service codestring
-
- The date (and optionally time) the consignment will be shipped (used for computing estimated delivery date). NOTE: The lead time calculation interprets the provided date & time as the time when the consignment has been scanned at the terminal. If not provided, now() will be usedobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
toCity
- The city the consignment is to be delivered tostring
-
toCountryCode
Required - Two-letter ISO-3166-1 country code of which consignment is sent tostring
-
toPostalCode
Required - The postal code the consignment is to be delivered tostring
-
edi
- Should the parcel be registered using EDI when shipped. Note that this flag may affect price and which services are availableboolean
-
language
- Language in which human-readable message should be returned.string
- Enum
-
NO
-
SE
-
SV
-
DA
-
EN
-
numberOfAlternativeDeliveryDates
- Number of alternative delivery dates to be suggestedinteger <int32>
-
postingAtPostoffice
- Will the parcel be delivered at a post office when shippedboolean
-
withEnvironmentalData
- Return environmental data about fossil free and electric transportation used on the shipments transport legsboolean
-
withEstimatedDeliveryTime
- Extended lead time information, including predicted arrivar time at pickup point. Only supported for a limited set of servicesboolean
-
withExpectedDelivery
- Controls whether lead times should be calculated or notboolean
-
withGuiInformation
- Return detailed information about requested service(s)boolean
-
withPrice
- Controls whether prices should be calculated. If customerNumber is supplied, the authenticated user requires the financial role with the provided customerboolean
-
Responses
200 OK
Schema
-
Required
- List of consignmentsarray of objects
-
consignmentId
- The consignment idstring
-
Required
The requested services results.
ShippingGuide will never remove services from the request if unable to calculate any of the requested data. It will either return the requested data or a service level error code along with a description.
array of objects-
customerNumber
- The mybring API customer numberstring
- object
-
- object
-
-
cargoProduct
- Cargo productstring
-
cargoTransportType
- Cargo transport typestring
-
dispatchAgentNumber
Required - Dispatch agent numberstring
-
- object
-
-
department
Required - Departmentstring
-
numberOfKilometers
- Number of kilometersstring
-
operationsID
Required - Operations idstring
-
orderStartTime
- Order start timestring
-
- Estimated delivery times at provided pickup point ids. Only relevant when withEstimatedDeliveryTime flag is set for services delivered to pickup point.array of objects
-
description
- Human readable descriptionstring
- object
-
-
bio
- Share of bio-diesel vehicles used on this transportation legnumber <double>
-
electric
- Share of electric vehicles used on this transportation legnumber <double>
-
-
fossilFree
- If true, shipment is transported by fossil free vehicles on this legboolean
-
nordicSwanEcoLabel
- If true, shipment that is transported is nordic swan eco labeledboolean
-
transportLeg
Required - Transport legstring
- Enum
-
LAST_MILE
-
LINE_HAUL
-
FIRST_MILE
-
- Errors related to requested service, if anyarray of objects
-
code
Required - Error codestring
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
description
- Human-readable description of the error that occurredstring
-
- Estimated delivery times at provided pickup point ids. Only relevant when withEstimatedDeliveryTime flag is set for services delivered to pickup point.array of objects
-
deliveryEndTime
- Delivery time window end time at the specified pickup pointstring
-
deliveryStartTime
- Delivery time window start time at the specified pickup pointstring
-
formattedExpectedDeliveryDate
- Formatted expected delivery datestring
-
pickupPointId
Required - Pickup point id. Either provided in the request or fetched as default pickup point for recipient postal codestring
-
pickupPointName
- Pickup point namestring
-
shippingDate
- Formatted shipping datestring
-
workingDays
- Number of working days until deliveryinteger <int32>
-
- object
-
- Alternative delivery datesarray of objects
-
Required
- Expected delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
- array of objects
- object
-
-
hour
- string
-
minute
- string
-
- object
-
-
hour
- string
-
minute
- string
-
-
year
- string
-
-
formattedExpectedDeliveryDate
- Formatted expected delivery datestring <dd.MM.yyyy>
-
Required
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
workingDays
Required - Number of working days until deliverystring
-
-
bookingCutoffTime
- The deadline for booking a shipment to the given destination. Only relevant for OIL_EXPRESS.string <HH:mm>
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
- Expected delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
- array of objects
- object
-
-
hour
- string
-
minute
- string
-
- object
-
-
hour
- string
-
minute
- string
-
-
year
- string
-
-
formattedEarliestPickupDate
- Formatted earliest pickup datestring <dd.MM.yyyy>
-
formattedExpectedDeliveryDate
- Expected delivery date/time formatted as dd.MM.YYYY HH:mmstring <dd.MM.YYYY HH:mm>
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
- object
-
-
Required
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
formattedDeliveryDate
Required - Formatted delivery datestring <dd.MM.yyyy>
- object
-
-
routeId
Required - Route idstring
-
routeName
Required - Route namestring
-
-
-
userMessage
Required - If there is known inaccuracy in the calculated lead time, this message will contain a human readable text explaining the deviationstring
-
workingDays
Required - The expected number of working days to deliver the shipmentstring
- object
-
-
closestPickupPoint
- Default pickup point for the requested toPostalCode. Only relevant for pickup point services SERVICEPAKKE, 5800 and 3067string
-
deliveryType
Required - Service delivery typestring
-
descriptionText
Required - Service descriptionstring
-
displayName
Required - Service display namestring
-
environmentalLogoUrl
- URL to logo for labelling service as environmental friendlystring
-
environmentalTagUrl
- URL to tag for labelling services as environmental friendlystring
-
helpText
Required - Service help textstring
-
logo
- Logo type to be used with this servicestring
- Enum
-
POSTEN
-
BRING
-
logoUrl
- URL to a suitable logo in svg formatstring
-
mainDisplayCategory
Required - Main display categorystring
-
maxWeightInKgs
Required - Service max weight in kgsstring
-
productName
Required - Service namestring
-
productURL
Required - URL to service description pagestring
-
shortName
Required - Service short namestring
-
subDisplayCategory
Required - Sub display categorystring
-
trackable
- Is this service trackableboolean
-
-
id
Required - The service idstring
- object
-
- Net (agreeemnt) price for shipping the service. Will only be calculated if a valid customer number has been supplied for the serviceobject
-
- Additional service pricesarray of objects
-
additionalServiceCodeFromProductionSystem
- string
-
additionalServiceDescription
- string
-
additionalServiceId
- string
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
- object
-
-
agreementNumber
- string
-
- Cargo agreement price attributesarray of objects
-
agreementName
Required - Agreement namestring
-
agreementNumber
Required - Agreement numberstring
-
price
Required - Agreement pricestring
-
subAgreementName
Required - Sub agreement namestring
-
subAgreementNumber
Required - Sub agreement numberstring
-
-
currencyCode
- Currency code for all pricesstring
-
netPriceFailed
- Only used for net prices in the scenario where net price calculation fails. If true, returned net price will be equal to list price, or a partially discounted price (i.e. a value between the list price and the correct net price)boolean
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
- Net (agreeemnt) price for shipping the service. Will only be calculated if a valid customer number has been supplied for the serviceobject
-
- Additional service pricesarray of objects
-
additionalServiceCodeFromProductionSystem
- string
-
additionalServiceDescription
- string
-
additionalServiceId
- string
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
- object
-
-
agreementNumber
- string
-
- Cargo agreement price attributesarray of objects
-
agreementName
Required - Agreement namestring
-
agreementNumber
Required - Agreement numberstring
-
price
Required - Agreement pricestring
-
subAgreementName
Required - Sub agreement namestring
-
subAgreementNumber
Required - Sub agreement numberstring
-
-
currencyCode
- Currency code for all pricesstring
-
netPriceFailed
- Only used for net prices in the scenario where net price calculation fails. If true, returned net price will be equal to list price, or a partially discounted price (i.e. a value between the list price and the correct net price)boolean
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
- object
-
-
totalZoneCount
- The total number of price zones used during price calculationinteger <int32>
-
-
productionCode
- Backend system production code. This code is required when producing valid EDI messages during ordering.string
-
shippingWeight
- The calculated volumetric weight (chargeable weight)number <double>
- Warnings related to the requested service, if any. Warnings could explain why some parts of the requested data is missingarray of objects
-
code
Required - Warning codestring
- Enum
-
NO_EXPECTED_DELIVERY
-
NO_PRICE_INFORMATION
-
ADDITIONAL_SERVICE_NOT_APPLICABLE
-
ESTIMATED_DELIVERY_TIME_NOT_FOUND
-
INCORRECT_FLAG_SET_FOR_ESTIMATED_DELIVERY_TIME
-
ESTIMATED_DELIVERY_TIME_NOT_AVAILABLE
-
INVALID_INPUT_PICKUP_POINT_FOUND
-
OUTSIDE_STANDARD_COVERAGE_AREA_FOR_PRODUCT
-
ESTIMATED_ARRIVAL_TIME_NOT_FOUND
-
ESTIMATED_ARRIVAL_TIME_NOT_AVAILABLE
-
ADDRESS_NOT_MATCHED
-
SVALBARD_POSSIBLE_DELAY
-
SPECIAL_CARGO_LIMITS_EXCEEDED
-
EXPECTED_DELIVERY_NOT_AVAILABLE_WITHOUT_ADDRESS
-
EXPECTED_DELIVERY_NOT_AVAILABLE_UNKNOWN_ADDRESS
-
NO_ENVIRONMENTAL_DATA
-
PARCEL_LOCKER_UNIT_ID_MANDATORY_FOR_ESTIMATED_DELIVERY_TIME
-
LEADTIME_NOT_FOUND
-
REQUIRES_WEIGHT_FOR_PRICE_CALCULATION
-
NO_ALTERNATIVE_DATES
-
description
- Human-readable description of the warningstring
-
-
-
-
uniqueId
- Request unique idstring
- object
-
-
Required
- List of consignmentsarray
-
- object
-
-
consignmentId
- The consignment idstring
-
Required
The requested services results.
ShippingGuide will never remove services from the request if unable to calculate any of the requested data. It will either return the requested data or a service level error code along with a description.
array-
- object
-
-
customerNumber
- The mybring API customer numberstring
- object
-
- object
-
-
cargoProduct
- Cargo productstring
-
cargoTransportType
- Cargo transport typestring
-
dispatchAgentNumber
Required - Dispatch agent numberstring
-
- object
-
-
department
Required - Departmentstring
-
numberOfKilometers
- Number of kilometersstring
-
operationsID
Required - Operations idstring
-
orderStartTime
- Order start timestring
-
- Estimated delivery times at provided pickup point ids. Only relevant when withEstimatedDeliveryTime flag is set for services delivered to pickup point.array
-
- object
-
-
description
- Human readable descriptionstring
- object
-
-
bio
- Share of bio-diesel vehicles used on this transportation legnumber <double>
-
electric
- Share of electric vehicles used on this transportation legnumber <double>
-
-
fossilFree
- If true, shipment is transported by fossil free vehicles on this legboolean
-
nordicSwanEcoLabel
- If true, shipment that is transported is nordic swan eco labeledboolean
-
transportLeg
Required - Transport legstring
- Enum
-
LAST_MILE
-
LINE_HAUL
-
FIRST_MILE
-
- Errors related to requested service, if anyarray
-
- object
-
-
code
Required - Error codestring
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
description
- Human-readable description of the error that occurredstring
-
- Estimated delivery times at provided pickup point ids. Only relevant when withEstimatedDeliveryTime flag is set for services delivered to pickup point.array
-
- object
-
-
deliveryEndTime
- Delivery time window end time at the specified pickup pointstring
-
deliveryStartTime
- Delivery time window start time at the specified pickup pointstring
-
formattedExpectedDeliveryDate
- Formatted expected delivery datestring
-
pickupPointId
Required - Pickup point id. Either provided in the request or fetched as default pickup point for recipient postal codestring
-
pickupPointName
- Pickup point namestring
-
shippingDate
- Formatted shipping datestring
-
workingDays
- Number of working days until deliveryinteger <int32>
-
- object
-
- Alternative delivery datesarray
-
- object
-
-
Required
- Expected delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
- array
-
- object
-
- object
-
-
hour
- string
-
minute
- string
-
- object
-
-
hour
- string
-
minute
- string
-
-
year
- string
-
-
formattedExpectedDeliveryDate
- Formatted expected delivery datestring <dd.MM.yyyy>
-
Required
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
workingDays
Required - Number of working days until deliverystring
-
-
bookingCutoffTime
- The deadline for booking a shipment to the given destination. Only relevant for OIL_EXPRESS.string <HH:mm>
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
- Expected delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
- array
-
- object
-
- object
-
-
hour
- string
-
minute
- string
-
- object
-
-
hour
- string
-
minute
- string
-
-
year
- string
-
-
formattedEarliestPickupDate
- Formatted earliest pickup datestring <dd.MM.yyyy>
-
formattedExpectedDeliveryDate
- Expected delivery date/time formatted as dd.MM.YYYY HH:mmstring <dd.MM.YYYY HH:mm>
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
- object
-
-
Required
- Delivery dateobject
-
-
day
- string
-
hour
- string
-
minute
- string
-
month
- string
-
year
- string
-
-
formattedDeliveryDate
Required - Formatted delivery datestring <dd.MM.yyyy>
- object
-
-
routeId
Required - Route idstring
-
routeName
Required - Route namestring
-
-
-
userMessage
Required - If there is known inaccuracy in the calculated lead time, this message will contain a human readable text explaining the deviationstring
-
workingDays
Required - The expected number of working days to deliver the shipmentstring
- object
-
-
closestPickupPoint
- Default pickup point for the requested toPostalCode. Only relevant for pickup point services SERVICEPAKKE, 5800 and 3067string
-
deliveryType
Required - Service delivery typestring
-
descriptionText
Required - Service descriptionstring
-
displayName
Required - Service display namestring
-
environmentalLogoUrl
- URL to logo for labelling service as environmental friendlystring
-
environmentalTagUrl
- URL to tag for labelling services as environmental friendlystring
-
helpText
Required - Service help textstring
-
logo
- Logo type to be used with this servicestring
- Enum
-
POSTEN
-
BRING
-
logoUrl
- URL to a suitable logo in svg formatstring
-
mainDisplayCategory
Required - Main display categorystring
-
maxWeightInKgs
Required - Service max weight in kgsstring
-
productName
Required - Service namestring
-
productURL
Required - URL to service description pagestring
-
shortName
Required - Service short namestring
-
subDisplayCategory
Required - Sub display categorystring
-
trackable
- Is this service trackableboolean
-
-
id
Required - The service idstring
- object
-
- Net (agreeemnt) price for shipping the service. Will only be calculated if a valid customer number has been supplied for the serviceobject
-
- Additional service pricesarray
-
- object
-
-
additionalServiceCodeFromProductionSystem
- string
-
additionalServiceDescription
- string
-
additionalServiceId
- string
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
- object
-
-
agreementNumber
- string
-
- Cargo agreement price attributesarray
-
- object
-
-
agreementName
Required - Agreement namestring
-
agreementNumber
Required - Agreement numberstring
-
price
Required - Agreement pricestring
-
subAgreementName
Required - Sub agreement namestring
-
subAgreementNumber
Required - Sub agreement numberstring
-
-
currencyCode
- Currency code for all pricesstring
-
netPriceFailed
- Only used for net prices in the scenario where net price calculation fails. If true, returned net price will be equal to list price, or a partially discounted price (i.e. a value between the list price and the correct net price)boolean
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
- Net (agreeemnt) price for shipping the service. Will only be calculated if a valid customer number has been supplied for the serviceobject
-
- Additional service pricesarray
-
- object
-
-
additionalServiceCodeFromProductionSystem
- string
-
additionalServiceDescription
- string
-
additionalServiceId
- string
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
- object
-
-
agreementNumber
- string
-
- Cargo agreement price attributesarray
-
- object
-
-
agreementName
Required - Agreement namestring
-
agreementNumber
Required - Agreement numberstring
-
price
Required - Agreement pricestring
-
subAgreementName
Required - Sub agreement namestring
-
subAgreementNumber
Required - Sub agreement numberstring
-
-
currencyCode
- Currency code for all pricesstring
-
netPriceFailed
- Only used for net prices in the scenario where net price calculation fails. If true, returned net price will be equal to list price, or a partially discounted price (i.e. a value between the list price and the correct net price)boolean
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
-
Required
- Price with additional servicesobject
-
-
amountWithVAT
- string
-
amountWithoutVAT
- string
-
vat
- string
-
- object
-
-
totalZoneCount
- The total number of price zones used during price calculationinteger <int32>
-
-
productionCode
- Backend system production code. This code is required when producing valid EDI messages during ordering.string
-
shippingWeight
- The calculated volumetric weight (chargeable weight)number <double>
- Warnings related to the requested service, if any. Warnings could explain why some parts of the requested data is missingarray
-
- object
-
-
code
Required - Warning codestring
- Enum
-
NO_EXPECTED_DELIVERY
-
NO_PRICE_INFORMATION
-
ADDITIONAL_SERVICE_NOT_APPLICABLE
-
ESTIMATED_DELIVERY_TIME_NOT_FOUND
-
INCORRECT_FLAG_SET_FOR_ESTIMATED_DELIVERY_TIME
-
ESTIMATED_DELIVERY_TIME_NOT_AVAILABLE
-
INVALID_INPUT_PICKUP_POINT_FOUND
-
OUTSIDE_STANDARD_COVERAGE_AREA_FOR_PRODUCT
-
ESTIMATED_ARRIVAL_TIME_NOT_FOUND
-
ESTIMATED_ARRIVAL_TIME_NOT_AVAILABLE
-
ADDRESS_NOT_MATCHED
-
SVALBARD_POSSIBLE_DELAY
-
SPECIAL_CARGO_LIMITS_EXCEEDED
-
EXPECTED_DELIVERY_NOT_AVAILABLE_WITHOUT_ADDRESS
-
EXPECTED_DELIVERY_NOT_AVAILABLE_UNKNOWN_ADDRESS
-
NO_ENVIRONMENTAL_DATA
-
PARCEL_LOCKER_UNIT_ID_MANDATORY_FOR_ESTIMATED_DELIVERY_TIME
-
LEADTIME_NOT_FOUND
-
REQUIRES_WEIGHT_FOR_PRICE_CALCULATION
-
NO_ALTERNATIVE_DATES
-
description
- Human-readable description of the warningstring
-
-
-
-
uniqueId
- Request unique idstring
-
400 Bad Request
Schema
- array of objects
-
code
Required - string
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
field
- string
-
message
- string
-
- object
-
- array
-
- object
-
-
code
Required - string
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
field
- string
-
message
- string
-
429 Too Many Requests
Schema
Media type: text/plain
-
- string
500 Internal Server Error
Schema
- array of objects
-
code
Required - string
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
field
- string
-
message
- string
-
- object
-
- array
-
- object
-
-
code
Required - string
- Enum
-
NOT_FOUND
-
FORBIDDEN
-
CONFLICT
-
UNAUTHORIZED
-
INVALID_ARGUMENT
-
INVALID_MEASUREMENTS
-
INTERNAL_ERROR
-
field
- string
-
message
- string
-
Request examples
{
"consignments": [
{
"additionalServices": [],
"fromCountryCode": "NO",
"fromPostalCode": "1555",
"id": "1",
"packages": [
{
"grossWeight": 250,
"id": "1",
"nonStackable": false,
"numberOfPallets": 0,
"volumeSpecial": false
}
],
"pickupPoints": [],
"products": [
{
"autoSelectCustomerNumber": false,
"customerNumber": "123456789",
"id": "5600"
}
],
"shippingDate": {
"day": "15",
"hour": "10",
"minute": "36",
"month": "11",
"year": "2022"
},
"toCountryCode": "NO",
"toPostalCode": "0173"
}
],
"edi": false,
"language": "NO",
"numberOfAlternativeDeliveryDates": 3,
"postingAtPostoffice": false,
"trace": false,
"withEnvironmentalData": false,
"withEstimatedDeliveryTime": false,
"withExpectedDelivery": true,
"withGuiInformation": true,
"withPrice": true
}
{
"consignments": [
{
"additionalServices": [],
"fromCountryCode": "NO",
"fromPostalCode": "1555",
"id": "1",
"packages": [
{
"grossWeight": 250,
"id": "1",
"nonStackable": false,
"numberOfPallets": 0,
"volumeSpecial": false
}
],
"pickupPoints": [
{
"id": "10878"
},
{
"id": "112951"
}
],
"products": [
{
"autoSelectCustomerNumber": false,
"id": "5800"
}
],
"shippingDate": {
"day": "15",
"hour": "10",
"minute": "36",
"month": "11",
"year": "2022"
},
"toCountryCode": "NO",
"toPostalCode": "0681"
}
],
"edi": false,
"language": "NO",
"numberOfAlternativeDeliveryDates": 0,
"postingAtPostoffice": false,
"trace": false,
"withEnvironmentalData": false,
"withEstimatedDeliveryTime": false,
"withExpectedDelivery": true,
"withGuiInformation": false,
"withPrice": false
}
{
"consignments": [
{
"additionalServices": [],
"fromCountryCode": "NO",
"fromPostalCode": "1555",
"id": "1",
"packages": [
{
"grossWeight": 250,
"height": 10.5,
"id": "1",
"length": 25,
"nonStackable": false,
"numberOfPallets": 0,
"volumeSpecial": false,
"width": 20.5
},
{
"grossWeight": 442,
"id": "2",
"nonStackable": false,
"numberOfPallets": 0,
"volume": 34.5,
"volumeSpecial": false
}
],
"pickupPoints": [],
"products": [
{
"autoSelectCustomerNumber": false,
"customerNumber": "123456789",
"id": "5600"
}
],
"shippingDate": {
"day": "15",
"month": "11",
"year": "2022"
},
"toCountryCode": "NO",
"toPostalCode": "0173"
}
],
"edi": false,
"language": "NO",
"numberOfAlternativeDeliveryDates": 0,
"postingAtPostoffice": false,
"trace": false,
"withEnvironmentalData": false,
"withEstimatedDeliveryTime": false,
"withExpectedDelivery": true,
"withGuiInformation": true,
"withPrice": true
}
{
"consignments": [
{
"additionalServices": [
{
"id": "2012"
}
],
"fromCountryCode": "NO",
"fromPostalCode": "1555",
"id": "1",
"packages": [
{
"grossWeight": 250,
"height": 10.5,
"id": "1",
"length": 25,
"nonStackable": false,
"numberOfPallets": 0,
"volumeSpecial": false,
"width": 20.5
}
],
"pickupPoints": [],
"products": [
{
"autoSelectCustomerNumber": false,
"customerNumber": "123456789",
"id": "5600"
}
],
"shippingDate": {
"day": "15",
"month": "11",
"year": "2022"
},
"toCountryCode": "NO",
"toPostalCode": "0173"
}
],
"edi": false,
"language": "NO",
"numberOfAlternativeDeliveryDates": 0,
"postingAtPostoffice": false,
"trace": false,
"withEnvironmentalData": false,
"withEstimatedDeliveryTime": false,
"withExpectedDelivery": true,
"withGuiInformation": true,
"withPrice": true
}
{
"consignments": [
{
"additionalServices": [],
"fromCountryCode": "NO",
"fromPostalCode": "1555",
"id": "1",
"packages": [
{
"grossWeight": 250,
"height": 10.5,
"id": "1",
"length": 25,
"nonStackable": false,
"numberOfPallets": 0,
"volumeSpecial": false,
"width": 20.5
}
],
"pickupPoints": [],
"products": [
{
"autoSelectCustomerNumber": false,
"customerNumber": "123456789",
"id": "5600"
}
],
"shippingDate": {
"day": "15",
"month": "11",
"year": "2022"
},
"toCountryCode": "NO",
"toPostalCode": "0173"
}
],
"edi": false,
"language": "NO",
"numberOfAlternativeDeliveryDates": 0,
"postingAtPostoffice": false,
"trace": false,
"withEnvironmentalData": false,
"withEstimatedDeliveryTime": false,
"withExpectedDelivery": true,
"withGuiInformation": true,
"withPrice": true
}
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_request>
<consignments>
<Consignment>
<additionalServices>
</additionalServices>
<fromCountryCode>NO</fromCountryCode>
<fromPostalCode>1555</fromPostalCode>
<id>1</id>
<packages>
<Package>
<grossWeight>250</grossWeight>
<id>1</id>
</Package>
</packages>
<pickupPoints>
</pickupPoints>
<products>
<ProductRequest>
<customerNumber>123456789</customerNumber>
<id>5600</id>
</ProductRequest>
</products>
<ShippingDate>
<day>15</day>
<hour>10</hour>
<minute>36</minute>
<month>11</month>
<year>2022</year>
</ShippingDate>
<toCountryCode>NO</toCountryCode>
<toPostalCode>0173</toPostalCode>
</Consignment>
</consignments>
<language>NO</language>
<numberOfAlternativeDeliveryDates>3</numberOfAlternativeDeliveryDates>
<withExpectedDelivery>true</withExpectedDelivery>
<withGuiInformation>true</withGuiInformation>
<withPrice>true</withPrice>
</Shipping_guide_request>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_request>
<consignments>
<Consignment>
<additionalServices>
</additionalServices>
<fromCountryCode>NO</fromCountryCode>
<fromPostalCode>1555</fromPostalCode>
<id>1</id>
<packages>
<Package>
<grossWeight>250</grossWeight>
<id>1</id>
</Package>
</packages>
<pickupPoints>
<PickupPointRequest>
<id>10878</id>
</PickupPointRequest>
<PickupPointRequest>
<id>112951</id>
</PickupPointRequest>
</pickupPoints>
<products>
<ProductRequest>
<id>5800</id>
</ProductRequest>
</products>
<ShippingDate>
<day>15</day>
<hour>10</hour>
<minute>36</minute>
<month>11</month>
<year>2022</year>
</ShippingDate>
<toCountryCode>NO</toCountryCode>
<toPostalCode>0681</toPostalCode>
</Consignment>
</consignments>
<language>NO</language>
<withExpectedDelivery>true</withExpectedDelivery>
</Shipping_guide_request>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_request>
<consignments>
<Consignment>
<additionalServices>
</additionalServices>
<fromCountryCode>NO</fromCountryCode>
<fromPostalCode>1555</fromPostalCode>
<id>1</id>
<packages>
<Package>
<grossWeight>250</grossWeight>
<height>10.5</height>
<id>1</id>
<length>25</length>
<width>20.5</width>
</Package>
<Package>
<grossWeight>442</grossWeight>
<id>2</id>
<volume>34.5</volume>
</Package>
</packages>
<pickupPoints>
</pickupPoints>
<products>
<ProductRequest>
<customerNumber>123456789</customerNumber>
<id>5600</id>
</ProductRequest>
</products>
<ShippingDate>
<day>15</day>
<month>11</month>
<year>2022</year>
</ShippingDate>
<toCountryCode>NO</toCountryCode>
<toPostalCode>0173</toPostalCode>
</Consignment>
</consignments>
<language>NO</language>
<withExpectedDelivery>true</withExpectedDelivery>
<withGuiInformation>true</withGuiInformation>
<withPrice>true</withPrice>
</Shipping_guide_request>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_request>
<consignments>
<Consignment>
<additionalServices>
<AdditionalServiceRequest>
<id>2012</id>
</AdditionalServiceRequest>
</additionalServices>
<fromCountryCode>NO</fromCountryCode>
<fromPostalCode>1555</fromPostalCode>
<id>1</id>
<packages>
<Package>
<grossWeight>250</grossWeight>
<height>10.5</height>
<id>1</id>
<length>25</length>
<width>20.5</width>
</Package>
</packages>
<pickupPoints>
</pickupPoints>
<products>
<ProductRequest>
<customerNumber>123456789</customerNumber>
<id>5600</id>
</ProductRequest>
</products>
<ShippingDate>
<day>15</day>
<month>11</month>
<year>2022</year>
</ShippingDate>
<toCountryCode>NO</toCountryCode>
<toPostalCode>0173</toPostalCode>
</Consignment>
</consignments>
<language>NO</language>
<withExpectedDelivery>true</withExpectedDelivery>
<withGuiInformation>true</withGuiInformation>
<withPrice>true</withPrice>
</Shipping_guide_request>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_request>
<consignments>
<Consignment>
<additionalServices>
</additionalServices>
<fromCountryCode>NO</fromCountryCode>
<fromPostalCode>1555</fromPostalCode>
<id>1</id>
<packages>
<Package>
<grossWeight>250</grossWeight>
<height>10.5</height>
<id>1</id>
<length>25</length>
<width>20.5</width>
</Package>
</packages>
<pickupPoints>
</pickupPoints>
<products>
<ProductRequest>
<customerNumber>123456789</customerNumber>
<id>5600</id>
</ProductRequest>
</products>
<ShippingDate>
<day>15</day>
<month>11</month>
<year>2022</year>
</ShippingDate>
<toCountryCode>NO</toCountryCode>
<toPostalCode>0173</toPostalCode>
</Consignment>
</consignments>
<language>NO</language>
<withExpectedDelivery>true</withExpectedDelivery>
<withGuiInformation>true</withGuiInformation>
<withPrice>true</withPrice>
</Shipping_guide_request>
Response examples
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"expectedDelivery": {
"alternativeDeliveryDates": [
{
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "18.11.2022",
"shippingDate": {
"day": "16",
"month": "11",
"year": "2022"
},
"workingDays": "1"
},
{
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "21.11.2022",
"shippingDate": {
"day": "21",
"month": "11",
"year": "2022"
},
"workingDays": "1"
},
{
"expectedDeliveryDate": {
"day": "22",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "22.11.2022",
"shippingDate": {
"day": "16",
"month": "11",
"year": "2022"
},
"workingDays": "1"
}
],
"earliestPickupDate": {
"day": "16",
"hour": "13",
"minute": "23",
"month": "11",
"year": "2022"
},
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedEarliestPickupDate": "16.11.2022 13:23",
"formattedExpectedDeliveryDate": "18.11.2022",
"userMessage": "",
"workingDays": "1"
},
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"guiInformation": {
"deliveryType": "Dør",
"descriptionText": "Pakken kan spores og leveres hjem til deg mellom kl. 17-21. Posten varsler deg før levering.",
"displayName": "Pakke levert hjem",
"environmentalLogoUrl": "https://www.mybring.com/shipping-guide/assets/img/Environment_logo.svg",
"environmentalTagUrl": "https://www.mybring.com/shipping-guide/assets/img/Environment_tag_fossilFree_en.png",
"helpText": "Pakke levert hjem leveres til mottaker mellom kl. 17-21. Mottaker varsles i god tid om forventet utleveringsdag via SMS eller e-post, i tillegg til nytt varsel når sendingen er lastet på bil for utkjøring samme dag. Mottaker kan gi Posten fullmakt til at pakken settes igjen ved døren eller et angitt sted hvis mottaker ikke er hjemme. Sjåføren varsler deg før levering på kveldstid. Mottaker kan endre leveringsdag når pakken spores (gjelder ikke lokalpakker). Dersom sendingen ikke kan leveres, blir den sendt til mottakers lokale hentested (postkontor eller Post i Butikk). Sendingen kan spores ved hjelp av sporingsnummeret.",
"logo": "POSTEN",
"logoUrl": "https://www.mybring.com/shipping-guide/assets/img/Posten_logo.svg",
"mainDisplayCategory": "Pakke",
"maxWeightInKgs": "35",
"productName": "Pakke levert hjem",
"productURL": "",
"shortName": "Pakke levert hjem",
"subDisplayCategory": "Til privatpersoner",
"trackable": true
},
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Consignment 1 with total weight 25000 grams is not within weight limit 13000 grams"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "The product %s is not available for provided customer/day/area"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "FORBIDDEN",
"description": "User does not have access to customer %s. Either the customer number is misspelled or you don't have access to that customer in mybring. Example of correct format for API customer number: PARCELS_NORWAY-10001123123. API customer numbers can be viewed in the profile pages in mybring or fetched using the Booking API's Customer Endpoint (see developer.bring.com)."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "FORBIDDEN",
"description": "User does not have access to financial information for customer %s. You might want to contact the mybring administrator for this customer (typically a privileged user from that customer)."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Customer not applicable for product %s"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "NOT_FOUND",
"description": "Customer %s not found (using super user)"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "%s product requires a customer number set on the product element"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "An external service for product %s is currently not available. If the problem persists, please contact us"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "%s does not support historic query (dates in the past)"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "Internal Error"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Cannot add 2012 with customer 12345678"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s can not be sent from country %s to country %s"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Shipping date cannot be in the past"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Shipping date cannot be more than 20 days into the future"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Invalid lead time customer in minutes. It should be up to 3 digits."
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Cannot add 2012 with product 5100 with specified shipment details"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "SG_VALIDATION_ERROR_01:There is weight and volume restrictions for %s in mybring. Bookings greater than 27 tonnes or exceeding 19 load meter, must be split into multiple orders."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Main customer number is required for service %s"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Missing customer for 2012"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Same day delivery (2012) VAS requires lead time from customer in minutes."
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Weight is required for product 5600, packageId : 1"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Weight and dimensions(length, width, height) are required for product 5600, packageId : 1"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Either weight or dimensions(length, width, height) or volume is required for product 5600, packageId : 1"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Weight and either of volume or dimensions(length, width, height) or pallets or load meter is required for product 5100, packageId : 1"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "CONFLICT",
"description": "Multiple agreements found for Customer"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Multiple Packages are not supported for Product: %s"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Multiple packages are not accepted for 5600"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Package 1 does not satisfy with minimum criteria"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Package weight 1000 grams not within weight limit 25 grams - 500 grams packageId: 1"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "The oil express product is not available between 2300 and 0400 hours."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s can not be sent between the given postal codes / countries"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s not available as EXPRESS between the given postal codes / countries"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "PackageId 1 exceeds max dimensions of 20 x 15 x 10"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Package 1 exceed maximum measurements for product 5600"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "PackageId 1 subceeds min dimensions of 15 x 13 x 7"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Package exceed maximum measurements for product %s"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "Price calculation failed for product %s. If the problem persists, please contact us"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s is not supported on this version. Use latest service %s for the product."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s was skipped since shipment can use normal courier product."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Unknown product ID or product %s not applicable for given EDI flag."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s requires weight information"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_ARGUMENT",
"description": "Product %s requires both weight and volume information"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "Service texts are not available"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INTERNAL_ERROR",
"description": "No service texts found"
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "INVALID_MEASUREMENTS",
"description": "Number of pallets exceeds maximum of 10"
}
],
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"errors": [
{
"code": "UNAUTHORIZED",
"description": "Customer number specified on product, but request not authenticated with mybring API login. Please query https://api.bring.com/shippingguide with the two API login headers (X-MyBring-API-Uid and X-MyBring-API-Key) set to a valid combination."
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"estimatedDeliveryTimes": [
{
"deliveryEndTime": "18:00",
"deliveryStartTime": "15:00",
"formattedExpectedDeliveryDate": "17.11.2022",
"pickupPointId": "121305",
"shippingDate": "16.11.2022",
"workingDays": 1
}
],
"id": "5800",
"productionCode": "5800"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"environmentalData": [
{
"description": "Pakken leveres fossilfritt til din adresse",
"details": {
"bio": 0,
"electric": 1
},
"fossilFree": true,
"nordicSwanEcoLabel": false,
"transportLeg": "LAST_MILE"
}
],
"expectedDelivery": {
"earliestPickupDate": {
"day": "15",
"hour": "13",
"minute": "23",
"month": "11",
"year": "2022"
},
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "22",
"minute": "0"
},
"startTime": {
"hour": "15",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedEarliestPickupDate": "15.11.2022 13:23",
"formattedExpectedDeliveryDate": "16.11.2022",
"userMessage": "",
"workingDays": "1"
},
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5600",
"price": {
"listPrice": {
"additionalServices": [
{
"additionalServiceCodeFromProductionSystem": "0041",
"additionalServiceDescription": "",
"additionalServiceId": "0041",
"additionalServicePrice": {
"amountWithVAT": "0.00",
"amountWithoutVAT": "0.00",
"vat": "0.00"
}
}
],
"currencyCode": "NOK",
"priceWithAdditionalServices": {
"amountWithVAT": "285.96",
"amountWithoutVAT": "228.77",
"vat": "57.19"
},
"priceWithoutAdditionalServices": {
"amountWithVAT": "285.96",
"amountWithoutVAT": "228.77",
"vat": "57.19"
}
},
"zones": {
"totalZoneCount": 3
}
},
"productionCode": "5600",
"shippingWeight": 1
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"price": {
"listPrice": {
"currencyCode": "NOK",
"priceWithAdditionalServices": {
"amountWithVAT": "185.04",
"amountWithoutVAT": "148.03",
"vat": "37.01"
},
"priceWithoutAdditionalServices": {
"amountWithVAT": "185.04",
"amountWithoutVAT": "148.03",
"vat": "37.01"
}
},
"zones": {
"totalZoneCount": 3
}
},
"productionCode": "5800",
"shippingWeight": 1
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5600",
"price": {
"listPrice": {
"additionalServices": [
{
"additionalServiceCodeFromProductionSystem": "2012",
"additionalServiceDescription": "",
"additionalServiceId": "2012",
"additionalServicePrice": {
"amountWithVAT": "37.50",
"amountWithoutVAT": "30.00",
"vat": "7.50"
}
}
],
"currencyCode": "NOK",
"priceWithAdditionalServices": {
"amountWithVAT": "323.46",
"amountWithoutVAT": "258.77",
"vat": "64.69"
},
"priceWithoutAdditionalServices": {
"amountWithVAT": "285.96",
"amountWithoutVAT": "228.77",
"vat": "57.19"
}
},
"netPrice": {
"additionalServices": [
{
"additionalServiceCodeFromProductionSystem": "2012",
"additionalServiceDescription": "",
"additionalServiceId": "2012",
"additionalServicePrice": {
"amountWithVAT": "37.50",
"amountWithoutVAT": "30.00",
"vat": "7.50"
}
}
],
"currencyCode": "NOK",
"priceWithAdditionalServices": {
"amountWithVAT": "323.46",
"amountWithoutVAT": "258.77",
"vat": "64.69"
},
"priceWithoutAdditionalServices": {
"amountWithVAT": "285.96",
"amountWithoutVAT": "228.77",
"vat": "57.19"
}
},
"zones": {
"totalZoneCount": 5
}
},
"productionCode": "5600",
"shippingWeight": 1
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "ESTIMATED_ARRIVAL_TIME_NOT_AVAILABLE",
"description": "Estimated arrival time is not available"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "ESTIMATED_ARRIVAL_TIME_NOT_FOUND",
"description": "No estimated arrival time found for service %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "ESTIMATED_DELIVERY_TIME_NOT_AVAILABLE",
"description": "Estimated delivery time is not available"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "ESTIMATED_DELIVERY_TIME_NOT_FOUND",
"description": "No estimated delivery time found for service %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "EXPECTED_DELIVERY_NOT_AVAILABLE_UNKNOWN_ADDRESS",
"description": "Expected delivery date cannot be calculated as there is no coverage on the service for specified recipient address"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "EXPECTED_DELIVERY_NOT_AVAILABLE_WITHOUT_ADDRESS",
"description": "Expected delivery date cannot be calculated without recipient address being specified"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "INCORRECT_FLAG_SET_FOR_ESTIMATED_DELIVERY_TIME",
"description": "Set WithExpectedDelivery flag to true to get estimated delivery time for service %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "INVALID_INPUT_PICKUP_POINT_FOUND",
"description": "Invalid pickup point Id(s): %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "NO_ALTERNATIVE_DATES",
"description": "Alternative dates is not available for this service"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "NO_ENVIRONMENTAL_DATA",
"description": "Environmental data is currently not available for %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "LEADTIME_NOT_FOUND",
"description": "Leadtime is not available for service %s and the requested route"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "NO_PRICE_INFORMATION",
"description": "The service currently does not offer price information for %s."
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "OUTSIDE_STANDARD_COVERAGE_AREA_FOR_PRODUCT",
"description": "Outside standard coverage area for product: %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "PARCEL_LOCKER_UNIT_ID_MANDATORY_FOR_ESTIMATED_DELIVERY_TIME",
"description": "Parcel locker unit id is mandatory to get estimated delivery time for service %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "REQUIRES_WEIGHT_FOR_PRICE_CALCULATION",
"description": "Weight is required for price calculation for service %s"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"id": "5800",
"productionCode": "5800",
"warnings": [
{
"code": "SPECIAL_CARGO_LIMITS_EXCEEDED",
"description": "One or more of the packages dimensions exceeds the special cargo limits of %s cm x %s cm x %s cm, or %s kg, and price cannot be calculated automatically. Please contact us for a custom price quotation for this consignment"
}
]
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<ExpectedDeliveryResponse>
<alternativeDeliveryDates>
<AlternativeDeliveryDateResponse>
<ExpectedDeliveryDateResponse>
<day>16</day>
<month>11</month>
<timeSlots>
<TimeSlotResponse>
<TimeOfDayResponse>
<hour>21</hour>
<minute>0</minute>
</TimeOfDayResponse>
<TimeOfDayResponse>
<hour>17</hour>
<minute>0</minute>
</TimeOfDayResponse>
</TimeSlotResponse>
</timeSlots>
<year>2022</year>
</ExpectedDeliveryDateResponse>
<formattedExpectedDeliveryDate>18.11.2022</formattedExpectedDeliveryDate>
<DateAndTimeResponse>
<day>16</day>
<month>11</month>
<year>2022</year>
</DateAndTimeResponse>
<workingDays>1</workingDays>
</AlternativeDeliveryDateResponse>
<AlternativeDeliveryDateResponse>
<ExpectedDeliveryDateResponse>
<day>16</day>
<month>11</month>
<timeSlots>
<TimeSlotResponse>
<TimeOfDayResponse>
<hour>21</hour>
<minute>0</minute>
</TimeOfDayResponse>
<TimeOfDayResponse>
<hour>17</hour>
<minute>0</minute>
</TimeOfDayResponse>
</TimeSlotResponse>
</timeSlots>
<year>2022</year>
</ExpectedDeliveryDateResponse>
<formattedExpectedDeliveryDate>21.11.2022</formattedExpectedDeliveryDate>
<DateAndTimeResponse>
<day>21</day>
<month>11</month>
<year>2022</year>
</DateAndTimeResponse>
<workingDays>1</workingDays>
</AlternativeDeliveryDateResponse>
<AlternativeDeliveryDateResponse>
<ExpectedDeliveryDateResponse>
<day>22</day>
<month>11</month>
<timeSlots>
<TimeSlotResponse>
<TimeOfDayResponse>
<hour>21</hour>
<minute>0</minute>
</TimeOfDayResponse>
<TimeOfDayResponse>
<hour>17</hour>
<minute>0</minute>
</TimeOfDayResponse>
</TimeSlotResponse>
</timeSlots>
<year>2022</year>
</ExpectedDeliveryDateResponse>
<formattedExpectedDeliveryDate>22.11.2022</formattedExpectedDeliveryDate>
<DateAndTimeResponse>
<day>16</day>
<month>11</month>
<year>2022</year>
</DateAndTimeResponse>
<workingDays>1</workingDays>
</AlternativeDeliveryDateResponse>
</alternativeDeliveryDates>
<DateAndTimeResponse>
<day>16</day>
<hour>13</hour>
<minute>23</minute>
<month>11</month>
<year>2022</year>
</DateAndTimeResponse>
<ExpectedDeliveryDateResponse>
<day>16</day>
<month>11</month>
<timeSlots>
<TimeSlotResponse>
<TimeOfDayResponse>
<hour>21</hour>
<minute>0</minute>
</TimeOfDayResponse>
<TimeOfDayResponse>
<hour>17</hour>
<minute>0</minute>
</TimeOfDayResponse>
</TimeSlotResponse>
</timeSlots>
<year>2022</year>
</ExpectedDeliveryDateResponse>
<formattedEarliestPickupDate>16.11.2022 13:23</formattedEarliestPickupDate>
<formattedExpectedDeliveryDate>18.11.2022</formattedExpectedDeliveryDate>
<workingDays>1</workingDays>
</ExpectedDeliveryResponse>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<GuiInformationResponse>
<deliveryType>Dør</deliveryType>
<descriptionText>Pakken kan spores og leveres hjem til deg mellom kl. 17-21. Posten varsler deg før levering.</descriptionText>
<displayName>Pakke levert hjem</displayName>
<environmentalLogoUrl>https://www.mybring.com/shipping-guide/assets/img/Environment_logo.svg</environmentalLogoUrl>
<environmentalTagUrl>https://www.mybring.com/shipping-guide/assets/img/Environment_tag_fossilFree_en.png</environmentalTagUrl>
<helpText>Pakke levert hjem leveres til mottaker mellom kl. 17-21. Mottaker varsles i god tid om forventet utleveringsdag via SMS eller e-post, i tillegg til nytt varsel når sendingen er lastet på bil for utkjøring samme dag. Mottaker kan gi Posten fullmakt til at pakken settes igjen ved døren eller et angitt sted hvis mottaker ikke er hjemme. Sjåføren varsler deg før levering på kveldstid. Mottaker kan endre leveringsdag når pakken spores (gjelder ikke lokalpakker). Dersom sendingen ikke kan leveres, blir den sendt til mottakers lokale hentested (postkontor eller Post i Butikk). Sendingen kan spores ved hjelp av sporingsnummeret.</helpText>
<logo>POSTEN</logo>
<logoUrl>https://www.mybring.com/shipping-guide/assets/img/Posten_logo.svg</logoUrl>
<mainDisplayCategory>Pakke</mainDisplayCategory>
<maxWeightInKgs>35</maxWeightInKgs>
<productName>Pakke levert hjem</productName>
<shortName>Pakke levert hjem</shortName>
<subDisplayCategory>Til privatpersoner</subDisplayCategory>
<trackable>true</trackable>
</GuiInformationResponse>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Consignment 1 with total weight 25000 grams is not within weight limit 13000 grams</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>The product %s is not available for provided customer/day/area</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>FORBIDDEN</code>
<description>User does not have access to customer %s. Either the customer number is misspelled or you don't have access to that customer in mybring. Example of correct format for API customer number: PARCELS_NORWAY-10001123123. API customer numbers can be viewed in the profile pages in mybring or fetched using the Booking API's Customer Endpoint (see developer.bring.com).</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>FORBIDDEN</code>
<description>User does not have access to financial information for customer %s. You might want to contact the mybring administrator for this customer (typically a privileged user from that customer).</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Customer not applicable for product %s</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>NOT_FOUND</code>
<description>Customer %s not found (using super user)</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>%s product requires a customer number set on the product element</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>An external service for product %s is currently not available. If the problem persists, please contact us</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>%s does not support historic query (dates in the past)</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>Internal Error</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Cannot add 2012 with customer 12345678</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s can not be sent from country %s to country %s</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Shipping date cannot be in the past</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Shipping date cannot be more than 20 days into the future</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Invalid lead time customer in minutes. It should be up to 3 digits.</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Cannot add 2012 with product 5100 with specified shipment details</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>SG_VALIDATION_ERROR_01:There is weight and volume restrictions for %s in mybring. Bookings greater than 27 tonnes or exceeding 19 load meter, must be split into multiple orders.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Main customer number is required for service %s</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Missing customer for 2012</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Same day delivery (2012) VAS requires lead time from customer in minutes.</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Weight is required for product 5600, packageId : 1</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Weight and dimensions(length, width, height) are required for product 5600, packageId : 1</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Either weight or dimensions(length, width, height) or volume is required for product 5600, packageId : 1</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Weight and either of volume or dimensions(length, width, height) or pallets or load meter is required for product 5100, packageId : 1</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>CONFLICT</code>
<description>Multiple agreements found for Customer</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Multiple Packages are not supported for Product: %s</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Multiple packages are not accepted for 5600</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Package 1 does not satisfy with minimum criteria</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Package weight 1000 grams not within weight limit 25 grams - 500 grams packageId: 1</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>The oil express product is not available between 2300 and 0400 hours.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s can not be sent between the given postal codes / countries</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s not available as EXPRESS between the given postal codes / countries</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>PackageId 1 exceeds max dimensions of 20 x 15 x 10</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Package 1 exceed maximum measurements for product 5600</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>PackageId 1 subceeds min dimensions of 15 x 13 x 7</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Package exceed maximum measurements for product %s</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>Price calculation failed for product %s. If the problem persists, please contact us</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s is not supported on this version. Use latest service %s for the product.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s was skipped since shipment can use normal courier product.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Unknown product ID or product %s not applicable for given EDI flag.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s requires weight information</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_ARGUMENT</code>
<description>Product %s requires both weight and volume information</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>Service texts are not available</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INTERNAL_ERROR</code>
<description>No service texts found</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>INVALID_MEASUREMENTS</code>
<description>Number of pallets exceeds maximum of 10</description>
</ErrorResponse>
</errors>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<errors>
<ErrorResponse>
<code>UNAUTHORIZED</code>
<description>Customer number specified on product, but request not authenticated with mybring API login. Please query https://api.bring.com/shippingguide with the two API login headers (X-MyBring-API-Uid and X-MyBring-API-Key) set to a valid combination.</description>
</ErrorResponse>
</errors>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<estimatedDeliveryTimes>
<EstimatedDeliveryTimeResponse>
<deliveryEndTime>18:00</deliveryEndTime>
<deliveryStartTime>15:00</deliveryStartTime>
<formattedExpectedDeliveryDate>17.11.2022</formattedExpectedDeliveryDate>
<pickupPointId>121305</pickupPointId>
<shippingDate>16.11.2022</shippingDate>
<workingDays>1</workingDays>
</EstimatedDeliveryTimeResponse>
</estimatedDeliveryTimes>
<id>5800</id>
<productionCode>5800</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<environmentalData>
<TransportLegResponse>
<description>Pakken leveres fossilfritt til din adresse</description>
<TransportLegDetailedResponse>
<electric>1</electric>
</TransportLegDetailedResponse>
<fossilFree>true</fossilFree>
<transportLeg>LAST_MILE</transportLeg>
</TransportLegResponse>
</environmentalData>
<ExpectedDeliveryResponse>
<DateAndTimeResponse>
<day>15</day>
<hour>13</hour>
<minute>23</minute>
<month>11</month>
<year>2022</year>
</DateAndTimeResponse>
<ExpectedDeliveryDateResponse>
<day>16</day>
<month>11</month>
<timeSlots>
<TimeSlotResponse>
<TimeOfDayResponse>
<hour>22</hour>
<minute>0</minute>
</TimeOfDayResponse>
<TimeOfDayResponse>
<hour>15</hour>
<minute>0</minute>
</TimeOfDayResponse>
</TimeSlotResponse>
</timeSlots>
<year>2022</year>
</ExpectedDeliveryDateResponse>
<formattedEarliestPickupDate>15.11.2022 13:23</formattedEarliestPickupDate>
<formattedExpectedDeliveryDate>16.11.2022</formattedExpectedDeliveryDate>
<workingDays>1</workingDays>
</ExpectedDeliveryResponse>
<id>5600</id>
<productionCode>5600</productionCode>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5600</id>
<PricesResponse>
<PriceResponse>
<additionalServices>
<AdditionalServicePriceResponse>
<additionalServiceCodeFromProductionSystem>0041</additionalServiceCodeFromProductionSystem>
<additionalServiceId>0041</additionalServiceId>
<DetailedPriceResponse>
<amountWithVAT>0.00</amountWithVAT>
<amountWithoutVAT>0.00</amountWithoutVAT>
<vat>0.00</vat>
</DetailedPriceResponse>
</AdditionalServicePriceResponse>
</additionalServices>
<currencyCode>NOK</currencyCode>
<DetailedPriceResponse>
<amountWithVAT>285.96</amountWithVAT>
<amountWithoutVAT>228.77</amountWithoutVAT>
<vat>57.19</vat>
</DetailedPriceResponse>
<DetailedPriceResponse>
<amountWithVAT>285.96</amountWithVAT>
<amountWithoutVAT>228.77</amountWithoutVAT>
<vat>57.19</vat>
</DetailedPriceResponse>
</PriceResponse>
<ZonesResponse>
<totalZoneCount>3</totalZoneCount>
</ZonesResponse>
</PricesResponse>
<productionCode>5600</productionCode>
<shippingWeight>1</shippingWeight>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<PricesResponse>
<PriceResponse>
<currencyCode>NOK</currencyCode>
<DetailedPriceResponse>
<amountWithVAT>185.04</amountWithVAT>
<amountWithoutVAT>148.03</amountWithoutVAT>
<vat>37.01</vat>
</DetailedPriceResponse>
<DetailedPriceResponse>
<amountWithVAT>185.04</amountWithVAT>
<amountWithoutVAT>148.03</amountWithoutVAT>
<vat>37.01</vat>
</DetailedPriceResponse>
</PriceResponse>
<ZonesResponse>
<totalZoneCount>3</totalZoneCount>
</ZonesResponse>
</PricesResponse>
<productionCode>5800</productionCode>
<shippingWeight>1</shippingWeight>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5600</id>
<PricesResponse>
<PriceResponse>
<additionalServices>
<AdditionalServicePriceResponse>
<additionalServiceCodeFromProductionSystem>2012</additionalServiceCodeFromProductionSystem>
<additionalServiceId>2012</additionalServiceId>
<DetailedPriceResponse>
<amountWithVAT>37.50</amountWithVAT>
<amountWithoutVAT>30.00</amountWithoutVAT>
<vat>7.50</vat>
</DetailedPriceResponse>
</AdditionalServicePriceResponse>
</additionalServices>
<currencyCode>NOK</currencyCode>
<DetailedPriceResponse>
<amountWithVAT>323.46</amountWithVAT>
<amountWithoutVAT>258.77</amountWithoutVAT>
<vat>64.69</vat>
</DetailedPriceResponse>
<DetailedPriceResponse>
<amountWithVAT>285.96</amountWithVAT>
<amountWithoutVAT>228.77</amountWithoutVAT>
<vat>57.19</vat>
</DetailedPriceResponse>
</PriceResponse>
<PriceResponse>
<additionalServices>
<AdditionalServicePriceResponse>
<additionalServiceCodeFromProductionSystem>2012</additionalServiceCodeFromProductionSystem>
<additionalServiceId>2012</additionalServiceId>
<DetailedPriceResponse>
<amountWithVAT>37.50</amountWithVAT>
<amountWithoutVAT>30.00</amountWithoutVAT>
<vat>7.50</vat>
</DetailedPriceResponse>
</AdditionalServicePriceResponse>
</additionalServices>
<currencyCode>NOK</currencyCode>
<DetailedPriceResponse>
<amountWithVAT>323.46</amountWithVAT>
<amountWithoutVAT>258.77</amountWithoutVAT>
<vat>64.69</vat>
</DetailedPriceResponse>
<DetailedPriceResponse>
<amountWithVAT>285.96</amountWithVAT>
<amountWithoutVAT>228.77</amountWithoutVAT>
<vat>57.19</vat>
</DetailedPriceResponse>
</PriceResponse>
<ZonesResponse>
<totalZoneCount>5</totalZoneCount>
</ZonesResponse>
</PricesResponse>
<productionCode>5600</productionCode>
<shippingWeight>1</shippingWeight>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>ESTIMATED_ARRIVAL_TIME_NOT_AVAILABLE</code>
<description>Estimated arrival time is not available</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>ESTIMATED_ARRIVAL_TIME_NOT_FOUND</code>
<description>No estimated arrival time found for service %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>ESTIMATED_DELIVERY_TIME_NOT_AVAILABLE</code>
<description>Estimated delivery time is not available</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>ESTIMATED_DELIVERY_TIME_NOT_FOUND</code>
<description>No estimated delivery time found for service %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>EXPECTED_DELIVERY_NOT_AVAILABLE_UNKNOWN_ADDRESS</code>
<description>Expected delivery date cannot be calculated as there is no coverage on the service for specified recipient address</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>EXPECTED_DELIVERY_NOT_AVAILABLE_WITHOUT_ADDRESS</code>
<description>Expected delivery date cannot be calculated without recipient address being specified</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>INCORRECT_FLAG_SET_FOR_ESTIMATED_DELIVERY_TIME</code>
<description>Set WithExpectedDelivery flag to true to get estimated delivery time for service %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>INVALID_INPUT_PICKUP_POINT_FOUND</code>
<description>Invalid pickup point Id(s): %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>NO_ALTERNATIVE_DATES</code>
<description>Alternative dates is not available for this service</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>NO_ENVIRONMENTAL_DATA</code>
<description>Environmental data is currently not available for %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>LEADTIME_NOT_FOUND</code>
<description>Leadtime is not available for service %s and the requested route</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>NO_PRICE_INFORMATION</code>
<description>The service currently does not offer price information for %s.</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>OUTSIDE_STANDARD_COVERAGE_AREA_FOR_PRODUCT</code>
<description>Outside standard coverage area for product: %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>PARCEL_LOCKER_UNIT_ID_MANDATORY_FOR_ESTIMATED_DELIVERY_TIME</code>
<description>Parcel locker unit id is mandatory to get estimated delivery time for service %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>REQUIRES_WEIGHT_FOR_PRICE_CALCULATION</code>
<description>Weight is required for price calculation for service %s</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
<?xml version="1.0" encoding="UTF-8"?>
<Shipping_guide_response>
<consignments>
<ConsignmentResponse>
<consignmentId>1</consignmentId>
<products>
<ProductResponse>
<id>5800</id>
<productionCode>5800</productionCode>
<warnings>
<WarningResponse>
<code>SPECIAL_CARGO_LIMITS_EXCEEDED</code>
<description>One or more of the packages dimensions exceeds the special cargo limits of %s cm x %s cm x %s cm, or %s kg, and price cannot be calculated automatically. Please contact us for a custom price quotation for this consignment</description>
</WarningResponse>
</warnings>
</ProductResponse>
</products>
</ConsignmentResponse>
</consignments>
<uniqueId>66091c94-6565-4c42-9c49-34bab012236d</uniqueId>
</Shipping_guide_response>
{
"consignments": [
{
"consignmentId": "1",
"products": [
{
"expectedDelivery": {
"alternativeDeliveryDates": [
{
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "18.11.2022",
"shippingDate": {
"day": "16",
"month": "11",
"year": "2022"
},
"workingDays": "1"
},
{
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "21.11.2022",
"shippingDate": {
"day": "21",
"month": "11",
"year": "2022"
},
"workingDays": "1"
},
{
"expectedDeliveryDate": {
"day": "22",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedExpectedDeliveryDate": "22.11.2022",
"shippingDate": {
"day": "16",
"month": "11",
"year": "2022"
},
"workingDays": "1"
}
],
"earliestPickupDate": {
"day": "16",
"hour": "13",
"minute": "23",
"month": "11",
"year": "2022"
},
"expectedDeliveryDate": {
"day": "16",
"month": "11",
"timeSlots": [
{
"endTime": {
"hour": "21",
"minute": "0"
},
"startTime": {
"hour": "17",
"minute": "0"
}
}
],
"year": "2022"
},
"formattedEarliestPickupDate": "16.11.2022 13:23",
"formattedExpectedDeliveryDate": "18.11.2022",
"userMessage": "",
"workingDays": "1"
},
"id": "5600",
"productionCode": "5600"
}
]
}
],
"uniqueId": "66091c94-6565-4c42-9c49-34bab012236d"
}
{
"fieldErrors": [
{
"code": "INVALID_ARGUMENT",
"field": "",
"message": "Consignment details missing"
}
]
}
{
"fieldErrors": [
{
"code": "INVALID_ARGUMENT",
"field": "",
"message": "Package details missing for consignment 1"
}
]
}
{
"fieldErrors": [
{
"code": "INVALID_ARGUMENT",
"field": "product",
"message": "One of the consignment is missing product id. Product id is mandatory on each consignment."
}
]
}
<?xml version="1.0" encoding="UTF-8"?>
<ErrorsResponse>
</ErrorsResponse>
<?xml version="1.0" encoding="UTF-8"?>
<ErrorsResponse>
<fieldErrors>
<FieldErrorResponse>
<code>INVALID_ARGUMENT</code>
<message>Consignment details missing</message>
</FieldErrorResponse>
</fieldErrors>
</ErrorsResponse>
<?xml version="1.0" encoding="UTF-8"?>
<ErrorsResponse>
<fieldErrors>
<FieldErrorResponse>
<code>INVALID_ARGUMENT</code>
<message>Package details missing for consignment 1</message>
</FieldErrorResponse>
</fieldErrors>
</ErrorsResponse>
<?xml version="1.0" encoding="UTF-8"?>
<ErrorsResponse>
<fieldErrors>
<FieldErrorResponse>
<code>INVALID_ARGUMENT</code>
<field>product</field>
<message>One of the consignment is missing product id. Product id is mandatory on each consignment.</message>
</FieldErrorResponse>
</fieldErrors>
</ErrorsResponse>
{
"fieldErrors": [
{
"code": "INTERNAL_ERROR",
"field": "",
"message": "Internal Error. Error Id: 123456789"
}
]
}
<?xml version="1.0" encoding="UTF-8"?>
<ErrorsResponse>
<fieldErrors>
<FieldErrorResponse>
<code>INTERNAL_ERROR</code>
<message>Internal Error. Error Id: 123456789</message>
</FieldErrorResponse>
</fieldErrors>
</ErrorsResponse>