Skip to main content
PUT
/
api
/
v3
/
groups
/
{id}
Fully update a group (PUT)
curl --request PUT \
  --url https://paradigm.lighton.ai/api/v3/groups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
"<unknown>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

Body

V3 API: Fully update an existing user group (PUT) - requires all fields

name
string
required

Name of the group

Maximum string length: 255
description
string | null

Description of the group

user_ids
integer[]

List of user IDs to set as group members (replaces existing members)

Response

Group updated successfully