For the complete documentation index, see llms.txt. This page is also available as Markdown.

List attribute sets

Returns a paginated list of attribute sets. Each set includes its read-only list of attribute configurations.

Filter by set name, order with the sort parameter, and page through the results with page and limit.

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
pageintegerOptional

The page number to return.

Default: 1
limitintegerOptional

The number of items to return per page.

Default: 10
sortstringOptional

Orders the results by one or more fields. Separate multiple fields with commas. Prefix a field with a hyphen (-) for descending order.

Example: -id
namestringOptional

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.

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?