Get Shipping Fee Card List
GET /orders/shipping/rate-cards
Description
This endpoint retrieves the list of shipping fee rate cards. The list can be filtered based on weight and distance bands.
Parameters
- tenantId (
string, header, required): The ID of the tenant. - countryCode (
string, header, required): The country code. - pageNumber (
integer, query, optional): The page number for pagination. - pageSize (
integer, query, optional): The number of items per page. - lowerWeightBand (
number, query, optional): The lower bound for the weight band. - higherWeightBand (
number, query, optional): The upper bound for the weight band. - lowerDistanceBand (
number, query, optional): The lower bound for the distance band. - higherDistanceBand (
number, query, optional): The upper bound for the distance band.
Responses
- 200 OK
- Media type: Controls Accept header.
- Example Value:
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /orders/shipping/rate-cards \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!