Update a specific break type
PATCH
/api/organizations/{organization_id}/locations/{location_id}/breaks/{id}
locations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/organizations//locations//breaks/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Updated Lunch Break",
"durationMinutes": 45,
"frequencyMinutes": 300,
"paid": true,
"mandatory": false,
"enabled": false
}'
Response Response Example
200 - Success
{
"id": "break_type_001",
"name": "Updated Lunch Break",
"locationId": "loc_001",
"durationMinutes": 45,
"frequencyMinutes": 300,
"paid": true,
"mandatory": false,
"active": true,
"enabled": false,
"createdAt": "2023-10-27T09:00:00Z",
"updatedAt": "2023-10-27T11:00:00Z",
"deletedAt": null
}
Request
Path Params
organization_id
string
required
Example:
org_12345
location_id
string
required
Example:
loc_001
id
string
required
Example:
break_type_001
Body Params application/json