Update User Labor Profile
PUT/organizations/:organizationId/users/:userId/labor-profile
Update labor profile for a user (hourly rate, overtime settings, loaded rate)
Request
Path Parameters
Organization ID
User ID
- application/json
Body
required
Base hourly rate in cents (e.g., 6500 = $65.00)
Wage type: HOURLY, MONTHLY, or ANNUAL
Whether overtime tracking is enabled
Overtime rate multiplier (e.g., 1.5 for time-and-a-half)
Hours per day after which overtime kicks in (default: 8)
Hours per week after which overtime kicks in (default: 40)
Loaded rate multiplier for true labor cost
When this rate becomes effective (Unix timestamp)
Responses
- 200
- 401
- 403
- 404
- 422
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
Updated labor profile
{
"data": {}
}
{}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
The request has not permission.
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
The request has not permission.
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
The resource hasn't found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
The resource hasn't found.
The resource hasn't found message.
{
"error": "string",
"message": "string"
}
{
"error": "ResourceNotFound",
"message": "The requested resource could not be found."
}
The input data has invalid.
- application/json
- Schema
- Example (from schema)
- Example
Schema
The input data has invalid.
The input data has invalid message.
{
"error": "string",
"message": "string"
}
{
"error": "ValidationError",
"message": "Input data validation failed."
}