To review your order before finalizing it, make a GET request to the Order Review API with the following requirements:
GET https://api.farnell.com/order/order_review
Request Headers
Name | Description |
api_key required * |
your_generated_api_key To generate your API key, follow the instructions on the Order API Registration page. |
authorization required * |
your_jwt_token To get your JWT token for authorization, use the Generate JWT Authentication Token API. |
Request Attributes
No request attributes are required for this endpoint
Response
Code 200
{
"deliveryCharge": "<Delivery Charge>",
"rereelingCharge": "<Re-reeling Charge>",
"handlingCharge": "<Handling Charge>",
"directShipCharge": "<Direct Ship Charge>",
"tax": "<GST/VAT>",
"grandTotal": "<Grand Total>,
"productsTotal": "<Products Total>",
"cartItems":
[
{
"unitPrice": "<Unit Price>",
"lineItem": "<Line Item>",
"sku": "<Part Number>",
"availableToShipQuantity": "<Available to Ship Quantity>,
"backOrderedQuantity": "<Backordered Quantity>",
"orderedQuantity": "<Ordered Quantity>",
}
]
"shippingAddress":
{
"country": "<Country Name>",
"city": "<City Name>",
"nickName": "<Address Name Identifier>",
"postalCode": "<Postal Code/Zip Code>;,
"addressLine1": "<Address Line 1>",
"addressLine2": "<Address Line 2>",
"addressLine3": "<Address Line 3>",
"region": "<County/State/Province>",
"addressId": "<Address ID>"
},
"email": "<Email ID>"
}