Skip to main content
GET
/
resource-placeholders
List resource placeholders
curl --request GET \
  --url https://www.ruddr.io/api/workspace/resource-placeholders \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "74c6b273-b91e-4cde-91d8-866ee99b0aad",
      "name": "Consultant",
      "isActive": true,
      "isBillable": true,
      "rateCurrency": "USD",
      "rate": 165,
      "costCurrency": "USD",
      "costPerHour": 80,
      "createdAt": "2025-11-13T17:02:37.742Z",
      "discipline": {
        "id": "3a8f1d2c-e947-4b06-9f13-c2d5e7a80b41",
        "name": "Technical Consulting"
      },
      "location": {
        "id": "9f4c2e71-3b8d-4a15-b6f2-d1e9c7a50384",
        "name": "North America"
      },
      "practice": {
        "id": "89c60b34-cca3-4b66-85d0-7b21e8e03c94",
        "name": "Implementation Services"
      },
      "skills": [
        {
          "id": "cc1128f7-7cac-4707-aeab-fe347b784abc",
          "name": "Salesforce"
        },
        {
          "id": "354ba2a2-b67b-4278-8d25-9ec2aa37daea",
          "name": "Consulting"
        }
      ]
    }
  ],
  "hasMore": true
}
A generic role-based slot used to plan staffing needs before assigning specific members.

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.