Skip to main content
PUT
/
v2
/
groups
/
{id}
Rename a custom group
curl --request PUT \
  --url https://api.range.org/v2/groups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Finance"
}
'
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Finance",
  "is_system": false,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z",
  "workspace_id": "workspace-123"
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

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

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

id
string
required

Body

application/json
name
string
required
Example:

"Finance"

Response

200 - application/json
id
string
required
Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

name
string
required
Example:

"Finance"

is_system
boolean
required
Example:

false

created_at
string
required
Example:

"2025-01-01T00:00:00.000Z"

updated_at
string
required
Example:

"2025-01-01T00:00:00.000Z"

workspace_id
string | null
Example:

"workspace-123"

Last modified on May 15, 2026