Creates a new custom group definition for the current user.
Returns 403 if the account's custom group limit has been reached.
Request
Add parameter in header Authorization
Example:Authorization: ********************
or
{
"groupName": "string",
"categories": [
{
"name": "string",
"displayOrder": 0
}
]
}
Request Code Samples
curl --location '/v1/custom-groups' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--data '{
"groupName": "string",
"categories": [
{
"name": "string",
"displayOrder": 0
}
]
}'
Responses
{
"id": 0,
"groupName": "string",
"categories": [
{
"name": "string",
"displayOrder": 0
}
]
}
Modified at 2026-07-08 10:04:10