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

Create an attribute config group

Creates a new attribute config group. The name must be unique across all groups.

post
/attribute_config_group/
Authorizations
AuthorizationstringRequired

Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.

Body

Fields for creating or fully replacing an attribute config group.

namestring · max: 255Required

Unique display name of the group. Must be unique across all attribute config groups.

orderintegerOptional

Sort order. Lower values appear first. Defaults to 0 when omitted.

Default: 0
Responses
201

The attribute config group was created.

application/json

An attribute config group record.

pkintegerRead-onlyRequired

Unique identifier of the attribute config group.

namestring · max: 255Required

Unique display name of the group.

orderintegerRequired

Sort order used when listing groups. Lower values appear first.

Default: 0
post/attribute_config_group/
POST /api/remote/1/attribute_config_group/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "name": "General Attributes",
  "order": 0
}
{
  "pk": 1,
  "name": "General Attributes",
  "order": 0
}

Last updated

Was this helpful?