Skip to main content
POST
/
grp
/
create
cURL
curl --request POST \
  --url https://{portalApiUrl}/grp/create \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "grp_name": "my-new-group",
  "grp_description": "Description of my group",
  "grp_parent_id": 3981,
  "grp_external_id": "12345678",
  "grp_external_name": "External name"
}
'
{
  "status": true,
  "result": {
    "grp_id": 123,
    "grp_name": "<string>",
    "grp_description": "<string>",
    "grp_parent_id": 123,
    "grp_external_id": "<string>",
    "grp_external_name": "<string>",
    "grp_created_date": "2023-11-07T05:31:56Z",
    "grp_updated_date": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.illuxi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authentication token obtained from POST /token

Body

application/json
grp_name
string

Internal key name of the group

grp_description
string | null

Human-readable description of the group

grp_parent_id
integer | null

ID of the parent group (for nested groups)

grp_external_id
string | null

External identifier for integration with third-party systems

grp_external_name
string | null

Alternate name from the external system

Response

group created

status
boolean
result
object