List shipping options
Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.
The page number to return.
1The number of items to return per page.
10Orders the results by one or more fields. Separate multiple fields with commas. Prefix a field with a hyphen (-) for descending order.
-idFilter by the exact identifier of a shipping option.
Filter by a comma-separated list of identifiers. Returns only shipping options whose identifier is in the list.
1,2,3Filter by name. Case-insensitive partial match.
Filter by slug. Case-insensitive partial match.
Filter by active status.
Filter by exact sort order value.
Filter by exact description.
A page of shipping options.
A paginated list of shipping options.
Total number of shipping options.
URL of the next page, or null if this is the last page.
URL of the previous page, or null if this is the first page.
Authentication credentials were not provided or are invalid.
The authenticated user does not have administrator privileges.
GET /api/remote/1/shipping_options/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 1,
"name": "Free Shipping",
"slug": "free-shipping",
"is_active": true,
"calculator": {
"slug": "free-calculator"
},
"rule": {
"slug": "any-rule"
},
"sort_order": 0,
"description": null,
"kwargs": {
"required_fields": []
},
"delivery_type": {
"value": "standard",
"label": "Standard"
}
}
]
}Last updated
Was this helpful?

