Create a new break type for a location
POST
/api/organizations/{organization_id}/locations/{id}/breaks
locations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/organizations//locations//breaks' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Coffee Break",
"durationMinutes": 15,
"frequencyMinutes": 120,
"paid": true,
"mandatory": false,
"enabled": true
}'
Response Response Example
201 - Success
{
"id": "break_type_002",
"name": "Coffee Break",
"locationId": "loc_001",
"durationMinutes": 15,
"frequencyMinutes": 120,
"paid": true,
"mandatory": false,
"active": true,
"enabled": true,
"createdAt": "2023-10-27T10:00:00Z",
"updatedAt": "2023-10-27T10:00:00Z",
"deletedAt": null
}
Request
Path Params
organization_id
string
required
Example:
org_12345
id
string
required
Example:
loc_001
Body Params application/json