Skip to main content
POST
/
utilization-target-periods
Create a utilization target period
curl --request POST \
  --url https://www.ruddr.io/api/workspace/utilization-target-periods \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start": "2023-12-25",
  "memberId": "<string>",
  "targetPercentage": 123
}
'
{
  "id": "4a9f2c67-e831-4d05-b7a2-91c6e3d80f52",
  "start": "2025-07-01",
  "end": "2025-12-31",
  "targetPercentage": 75,
  "isDefault": false,
  "createdAt": "2025-07-01T08:45:12.000Z"
}
A period defining a member’s billable utilization targets.

Authorizations

Authorization
string
header
required

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

Body

application/json
start
string<date>
required

The start date for the period. Will be in the form YYYY-MM-DD.

memberId
string
required

The ID of the member this utilization target period belongs to.

targetPercentage
number | null

The target billable utilization percentage for this period.

Response

200

id
string

The unique identifier for the object.

start
string<date>

The start date for the period. Will be in the form YYYY-MM-DD.

end
string<date> | null

The end date for the period. Will be in the form YYYY-MM-DD. null if this is the most recent period.

targetPercentage
number | null

The target billable utilization percentage for this period.

isDefault
boolean

Whether this is the default utilization target period for the member.

createdAt
string<date-time>

The timestamp when the object was created.