Skip to main content
GET
/
resource-placeholders
/
{id}
Get a resource placeholder
curl --request GET \
  --url https://www.ruddr.io/api/workspace/resource-placeholders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ]
}
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.

Path Parameters

id
string
required

The resource placeholder uuid

Response

200

id
string

The unique identifier for the object.

name
string

The name of the placeholder.

isActive
boolean

Whether the placeholder is active.

isBillable
boolean

Whether the placeholder is billable.

rateCurrency
string | null

The currency code for the placeholder's billing rate. null when isBillable is false.

rate
number | null

The placeholder's billing rate. null when isBillable is false.

costCurrency
string | null

The currency code for the placeholder's cost rate. null when no cost rate is configured.

costPerHour
number | null

The placeholder's cost per hour. null when no cost rate is configured.

createdAt
string<date-time>

The timestamp when the object was created.

discipline
object

The discipline associated with this placeholder.

location
object

The location associated with this placeholder.

practice
object

The practice associated with this placeholder.

skills
object[]

The skills associated with this placeholder.