Skip to main content
POST
/
member-levels
Create a member level
curl --request POST \
  --url https://www.ruddr.io/api/workspace/member-levels \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isActive": true
}
'
{
  "id": "d4a8c1e7-5f32-4b69-80d3-a9e2f6c01b85",
  "name": "Principal Consultant",
  "description": "Senior-level consultants leading major client engagements.",
  "isActive": true,
  "createdAt": "2025-04-18T10:22:37.614Z"
}
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.

Body

application/json
name
string
required

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. Defaults to true if not provided.

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.