Shippings
This method returns details about a specific shipping option, including its ID, delivery type, name, slug, and active status. It also includes the shipping option’s associated sorting order, calculator, rule (with its name and slug), and any additional information in the form of attributes like descriptions and logos
Token-based authentication with required prefix "Token"
Query parameter calculator used to filter results based on specific conditions.
Query parameter created_date used to filter results based on specific conditions.
Query parameter delivery_type used to filter results based on specific conditions.
Query parameter description used to filter results based on specific conditions.
Query parameter id used to filter results based on specific conditions.
Filters records where id is greater than the given value.
Filters records where id is greater than or equal to the given value.
Filters records where id is less than the given value.
Filters records where id is less than or equal to the given value.
Query parameter is_active used to filter results based on specific conditions.
Query parameter kwargs used to filter results based on specific conditions.
Limits the number of results returned in the response.
Query parameter logo used to filter results based on specific conditions.
Query parameter modified_date used to filter results based on specific conditions.
Filters records where modified_date is greater than the given value.
Filters records where modified_date is greater than or equal to the given value.
Filters records where modified_date is less than the given value.
Filters records where modified_date is less than or equal to the given value.
Query parameter name used to filter results based on specific conditions.
Query parameter page used to filter results based on specific conditions.
Query parameter rule used to filter results based on specific conditions.
Query parameter slug used to filter results based on specific conditions.
Query parameter sort used to filter results based on specific conditions.
Query parameter sort_order used to filter results based on specific conditions.
Query parameter translations used to filter results based on specific conditions.
Successful response for status code 200.
GET /api/v1/remote/1/data-warehouse/shippings/shipping-options/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response for status code 200.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"calculator": null,
"created_date": "2025-12-01T15:06:12.056Z",
"delivery_type": "same_day",
"description": "text",
"id": 1,
"is_active": true,
"kwargs": null,
"logo": "https://example.com",
"modified_date": "2025-12-01T15:06:12.056Z",
"name": "text",
"rule": null,
"slug": "text",
"sort_order": 1,
"translations": null
}
]
}This method returns details about a specific shipping option, including its ID, delivery type, name, slug, and active status. It also includes the shipping option’s associated sorting order, calculator, rule (with its name and slug), and any additional information in the form of attributes like descriptions and logos This endpoint retrieves a specific record by its unique identifier.
Token-based authentication with required prefix "Token"
A unique integer value identifying this shipping option.
Successful response for status code 200.
Object not found.
GET /api/v1/remote/1/data-warehouse/shippings/shipping-options/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"calculator": null,
"created_date": "2025-12-01T15:06:12.056Z",
"delivery_type": "same_day",
"description": "text",
"id": 1,
"is_active": true,
"kwargs": null,
"logo": "https://example.com",
"modified_date": "2025-12-01T15:06:12.056Z",
"name": "text",
"rule": null,
"slug": "text",
"sort_order": 1,
"translations": null
}Was this helpful?

