List attribute sets
get/attribute_set/
Authorizations
AuthorizationstringRequired
Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.
Query parameters
pageintegerOptionalDefault:
The page number to return.
1limitintegerOptionalDefault:
The number of items to return per page.
10sortstringOptionalExample:
Orders the results by one or more fields. Separate multiple fields with commas. Prefix a field with a hyphen (-) for descending order.
-idnamestringOptional
Filter by exact attribute set name.
Responses
200
A paginated list of attribute sets.
application/json
A page of attribute set results.
countintegerOptional
The total number of attribute sets matching the query.
nextstring · nullableOptional
The URL of the next page of results, when available.
previousstring · nullableOptional
The URL of the previous page of results, when available.
401
Authentication credentials were not provided or are invalid.
application/json
403
The authenticated user does not have administrator privileges.
application/json
get/attribute_set/
GET /api/remote/1/attribute_set/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 15,
"name": "Apparel",
"attribute_set_type": "simple",
"attributeconfig_set": []
}
]
}Last updated
Was this helpful?

