Skip to main content
GET
/
workspace-roles
List workspace roles
curl --request GET \
  --url https://www.ruddr.io/api/workspace/workspace-roles \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "a3f1c2e4-8b47-4d9e-b6f2-3c7a5d1e9f04",
      "name": "Senior Engineer",
      "isActive": true,
      "isBillable": true,
      "rate": 175,
      "currency": "USD",
      "createdAt": "2025-03-12T14:22:38.104Z",
      "practice": {
        "id": "9e4b7c1a-2f63-4a8d-b5e0-7d2c6f3a1b89",
        "name": "Engineering"
      },
      "location": {
        "id": "c8d2f5b3-6e14-4c7a-a9b1-2e8f4d6c0a35",
        "name": "New York"
      },
      "discipline": {
        "id": "5a7e3d9b-1c42-4f6e-8a0d-4b9c2e7f5a13",
        "name": "Software Development"
      }
    }
  ],
  "hasMore": false
}
A company-wide role and rate used to build a rate card. Workspace roles can be added or linked to client-specific rate cards.

Authorizations

Authorization
string
header
required

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

Query Parameters

startingAfter
string

A cursor ID (uuid) used to request the next page of results. If not provided, defaults to the first page of results.

endingBefore
string

A cursor ID (uuid) used to request the previous page of results. Is mutually exclusive with startingAfter.

limit
integer<int32>

The maximum number of results to be returned. Can be any number from 1 to 100. Defaults to 10, if not provided.

name
string

Filter by name when it exactly matches the provided keyword.

Response

200

results
object[]
hasMore
boolean

Whether there are more results available after this page.