v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBMeal & Rest Breaks
Public API
Create Break Policy
Create a break policy. Breaks and assignments can be optionally included and created at the same time.
OAuth Scopes: time_tracking:breaks.write
post/api/v1/time-tracking/break-policies
Request body
Example request
{
"name": "California",
"description": "All breaks for California compliance",
"allEmployeesAssigned": true,
"breaks": [
{
"name": "Lunch Break",
"duration": 60
}
]
}Response
Successfully created a break policy
Example response
{
"id": "0199de9b-6bcb-77e7-941d-3caf74b9a372",
"name": "California",
"description": "All breaks for California compliance",
"allEmployeesAssigned": true,
"createdAt": "2025-10-15T06:00:00Z",
"updatedAt": "2025-10-15T06:00:00Z",
"deletedAt": "2025-10-15T06:00:00Z",
"breaks": [
{
"id": "0199de9b-6bcb-77e7-941d-3caf74b9a372",
"name": "Lunch Break",
"duration": 60,
"availabilityStartTime": "08:00",
"availabilityEndTime": "17:00",
"createdAt": "2025-01-01T06:00:00Z",
"updatedAt": "2025-01-01T06:00:00Z",
"deletedAt": "2025-01-01T06:00:00Z"
}
]
}