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

List attribute config groups

Returns a paginated list of all attribute config groups. Results are ordered by order ascending by default.

Use sort to change the ordering. No additional filter parameters are supported.

get
/attribute_config_group/
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
Responses
200

A paginated list of attribute config groups.

application/json

A paginated list of attribute config groups.

countintegerOptional

Total number of attribute config groups.

nextstring · nullableOptional

URL of the next page, or null if this is the last page.

previousstring · nullableOptional

URL of the previous page, or null if this is the first page.

get/attribute_config_group/
GET /api/remote/1/attribute_config_group/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "next": null,
  "previous": null,
  "results": [
    {
      "pk": 1,
      "name": "General Attributes",
      "order": 0
    }
  ]
}

Last updated

Was this helpful?