Skip to main content
GET
/
job-titles
/
{id}
Get a job title
curl --request GET \
  --url https://www.ruddr.io/api/workspace/job-titles/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "b5b31812-9686-44a2-a356-a3fd8691b9c2",
  "name": "Client Director",
  "isActive": true,
  "createdAt": "2025-01-29T16:30:21.612Z"
}
A title that can be assigned to workspace members and used to filter reports.

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 job title uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the job title.

isActive
boolean

Whether the job title is active.

createdAt
string<date-time>

The timestamp when the object was created.