Skip to main content
PATCH
/
rate-cards
/
{id}
Edit Rate Card
curl --request PATCH \
  --url https://api.roostedhr.com/api/1_12/rate-cards/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "roles_id": "<string>",
  "billing_rate": 123,
  "pay_rate": 123,
  "hourly_type": "hourly",
  "daily_overtime_cutoff": 123,
  "daily_doubletime_cutoff": 123,
  "selected_payroll_rules": [
    "<string>"
  ]
}
'
{
  "id": "<string>",
  "name": "<string>",
  "roles_id": "<string>",
  "skillset": "<string>",
  "billing_rate": "<string>",
  "pay_rate": "<string>",
  "hourly_type": "hourly",
  "daily_overtime_cutoff": "<string>",
  "daily_doubletime_cutoff": "<string>",
  "selected_payroll_rules": [
    "<string>"
  ]
}
This endpoint updates rate configuration only — you cannot rename the rate card. Updatable fields: billing_rate, pay_rate, hourly_type, daily_overtime_cutoff, daily_doubletime_cutoff, and selected_payroll_rules.

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Rate Card ID

Body

application/json

Rate fields to update

Request body for updating rate card entries. Does not allow renaming the rate card.

roles_id
string
required

Skillset (role) identifier. Required to identify which skillset entry to update.

billing_rate
number

Updated billing rate charged to the client

pay_rate
number

Updated pay rate for the worker

hourly_type
enum<string>

Rate calculation type

Available options:
hourly,
shift
daily_overtime_cutoff
integer | null

Hours before daily overtime kicks in

daily_doubletime_cutoff
integer | null

Hours before daily double-time kicks in

selected_payroll_rules
string[]

Advanced payroll rule IDs to apply

Response

OK

A rate card entry with skillset-specific billing and pay rate configuration.

id
string

Rate card identifier

name
string

Rate card name

roles_id
string

Associated skillset (role) identifier

skillset
string

Skillset name

billing_rate
string

Billing rate charged to the client

pay_rate
string

Pay rate for the worker

hourly_type
enum<string>

Rate calculation type

Available options:
hourly,
shift
daily_overtime_cutoff
string | null

Hours before daily overtime kicks in

daily_doubletime_cutoff
string | null

Hours before daily double-time kicks in

selected_payroll_rules
string[]

Advanced payroll rule IDs applied to this rate card entry