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

Partially update an attribute config group

Updates one or more fields of an existing attribute config group. Only the fields you send are changed. The name, if provided, must remain unique.

patch
/attribute_config_group/{id}/
Authorizations
AuthorizationstringRequired

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

Path parameters
idintegerRequired

The unique identifier of the attribute config group.

Body

Fields for partially updating an attribute config group. All fields are optional.

namestring · max: 255Optional

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

orderintegerOptional

Sort order. Lower values appear first.

Responses
200

The updated attribute config group.

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
patch/attribute_config_group/{id}/
PATCH /api/remote/1/attribute_config_group/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 11

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

Last updated

Was this helpful?