To retrieve the available shipping methods for your order, make a GET request to the Retrieve Shipping Methods API with the following requirements:
GET https://api.farnell.com/order/shipping_method
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
{
"usableShippingMode": [
{
"shippingMethodID": "<Shipping Method ID>",
"shippingMethodDesc": "<Shipping Method Description>",
"shippingMethodPrice": "<Shipping Price>",
"shippingPreferredMethod": "<True/False>"
}
],
"requireShippingMethod": "<True/False>",
"emailId": "<Email ID>"
}