List shipping option groups
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 exact shipping option group identifier.
Filter by the exact identifier of a shipping option group. Equivalent to id.
Filter by a comma-separated list of identifiers. Returns only shipping option groups whose identifier is in the list.
1,2,3Filter by the identifier of the order the group's covered order items belong to.
Filter by the identifier of a specific order item covered by the group.
A page of shipping option groups.
A paginated list of shipping option groups.
Total number of shipping option groups.
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_option_groups/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 1,
"amount": "9.99",
"created_date": "2026-01-15T10:32:00Z",
"modified_date": "2026-01-15T10:32:00Z",
"shipping_option": {
"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"
}
},
"order_items": [
501,
502
]
}
]
}Last updated
Was this helpful?

