Skip to main content
GET
/
project-members
/
{id}
Get a project member
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-members/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a3f2e1d4-5b6c-7890-abcd-ef1234567890",
  "typeId": "collaborator",
  "isActive": true,
  "isBillable": true,
  "rate": 175.5,
  "overrideCostRate": true,
  "costCurrency": "USD",
  "costPerHour": 85,
  "overheadCostPerHour": 12.5,
  "createdAt": "2025-03-10T14:22:31.000Z",
  "member": {
    "id": "b7c8d9e0-1f2a-3b4c-5d6e-7f8a9b0c1d2e",
    "name": "Sarah Chen"
  },
  "project": {
    "id": "c4d5e6f7-8a9b-0c1d-2e3f-4a5b6c7d8e9f",
    "name": "Enterprise Portal Redesign",
    "client": {
      "id": "d1e2f3a4-b5c6-d7e8-f9a0-b1c2d3e4f5a6",
      "name": "Meridian Technologies"
    }
  },
  "roles": null,
  "budget": {
    "billableHours": 120,
    "nonBillableHours": 20
  },
  "monthlyBudget": {
    "billableHours": 40,
    "nonBillableHours": 6.5
  }
}
A team member assigned to a project.

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 project member uuid

Response

200

id
string

The unique identifier for the object.

typeId
string

The type of project member. Can be either "administrator" (Project administrator) or "collaborator" (Project collaborator). Defaults to "collaborator".

isActive
boolean

Whether the member is still active on the project.

isBillable
boolean | null

Whether the member is billable on this project. Only used if the project is not using roles; otherwise billability is assigned at the role level and this field is null.

rate
number<float> | null

The member's billing rate for the project. Only used if the project is not using roles and the member is billable; otherwise null.

overrideCostRate
boolean

Whether this project member's cost rate is overridden at the project member level rather than using the workspace or member default.

costCurrency
string | null

The ISO 4217 currency code for the overridden cost rate. Only populated when overrideCostRate is true; otherwise null.

costPerHour
number<float> | null

The overridden cost per hour for this project member. Only populated when overrideCostRate is true; otherwise null.

overheadCostPerHour
number<float> | null

The overridden overhead cost per hour for this project member. Only populated when overrideCostRate is true; otherwise null.

createdAt
string<date-time>

The timestamp when the object was created.

member
object

The workspace member assigned to this project.

project
object

The project this member belongs to.

roles
object[] | null

The project roles assigned to this member. Only populated when the project uses roles; otherwise null.

budget
object

The member's budget hours for the project. Only populated when the project uses a detailed or aggregated budget and does not use roles; otherwise null.

monthlyBudget
object

The member's monthly budget hours for the project. Only populated when the project uses a detailed monthly budget and does not use roles; otherwise null.