Skip to main content
PATCH
/
member-levels
/
{id}
Update a member level
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/member-levels/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isActive": true
}
'
{
  "id": "a5f1c8d3-7e42-4b86-90d0-e3b7c6f02a19",
  "name": "Lead Consultant",
  "description": "Consultants who lead project teams and mentor junior staff.",
  "isActive": true,
  "createdAt": "2025-02-10T09:15:42.891Z"
}
A seniority level that can be assigned to workspace members (for example, Associate, Senior, or Lead).

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The member level uuid.

Body

application/json
name
string

The name of the member level. Max 255 characters.

description
string | null

The description of the member level. Max 5000 characters.

isActive
boolean

Whether the member level is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the member level.

description
string | null

The description of the member level.

isActive
boolean

Whether the member level is active.

createdAt
string<date-time>

The timestamp when the object was created.