Skip to main content
POST
/
user
/
grp
/
{id}
cURL
curl --request POST \
  --url https://{portalApiUrl}/user/grp/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start": 0,
  "limit": 20
}
'
{
  "status": true,
  "total": 123,
  "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

Path Parameters

id
integer
required

ID of the user

Body

application/json
start
integer
default:0
limit
integer
default:20

Response

list of groups for the user

status
boolean
total
integer
result
object[]