Aller au contenu

/api/workspaces/me/billable-settings (PUT)

PUT
/api/workspaces/me/billable-settings
curl --request PUT \
--url https://example.com/api/workspaces/me/billable-settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "currency": "example", "clearDefaultHourlyRate": true, "defaultHourlyRate": 1, "defaultIsBillable": true }'
Media type application/json
object
currency
string
nullable
clearDefaultHourlyRate
boolean
defaultHourlyRate
number format: double
nullable
defaultIsBillable
boolean
nullable
Example generated
{
"currency": "example",
"clearDefaultHourlyRate": true,
"defaultHourlyRate": 1,
"defaultIsBillable": true
}

OK