Get break type
Returns a single BreakType
specified by id
Required permissions
TIMECARDS_SETTINGS_READ
Path Parameters
Name | Description |
---|---|
id
Required
|
UUID for the |
Response Fields
Name | Description |
---|---|
break_type
|
The response object. |
errors
|
Any errors that occurred during the request. |
Examples
You are viewing an old version of the API
GET
/v2/labor/break-types/{id}
cURL
- cURL
- Ruby
- Python
curl https://connect.squareup.com/v2/labor/break-types/{id} \
-H 'Square-Version: 2019-11-20' \
-H 'Authorization: Bearer ACCESS_TOKEN'
Response JSON
{
"break_type": {
"id": "lA0mj_RSOprNPwMUXdYp",
"location_id": "059SB0E0WCNWS",
"break_name": "Lunch Break",
"expected_duration": "PT30M",
"is_paid": true,
"version": 1,
"created_at": "2019-02-21T17:50:00Z",
"updated_at": "2019-02-21T17:50:00Z"
}
}