Retrieve detailed information for a specific till within your organization.
curl --location 'https://eu.api.capillarytech.com/v2/organization/till/75152648' \
--header 'Authorization: Basic ******' \
--header 'Content-Type: application/json' \
--header 'Cookie: _cfuvid=Ybmm9uq6qMggGDFlkjsFl0H.gzgWgfZTeuIeXnesKww-1757931612468-0.0.1.1-604800000'
- Authentication: Basic or OAuth credentials
- Default access group
| |
---|
Pagination | No |
Batch support | No |
Rate limit information | Demo and testing clusters: 1000 requests per minute per API key. Other organizations: Rate limit is brand-specific. |
Name | Type | Description |
---|
tilIId | integer | Unique identifier of the till to fetch details for. |
{
"id": 75152648,
"code": "campaign_points_till",
"description": "",
"name": "CAMPAIGN_POINTS_TILL",
"type": "TILL",
"referenceId": -1,
"adminType": "GENERAL",
"isActive": true,
"isOuEnabled": false,
"timeZoneId": 0,
"currencyId": 0,
"languageId": 0,
"customField": [],
"default": false,
"warnings": []
}
Parameter | Data Type | Description |
---|
id | integer | Unique identifier for the till. |
code | string | Code for the till. |
description | string | Description of the till. |
name | string | Name of the till. |
type | string | Type of the till. |
referenceId | integer | External or upstream reference (if any); -1 indicates none. |
adminType | string | Administration type of the till (Admin/General). |
isActive | boolean | Indicates if the till is active. |
isOuEnabled | boolean | Indicates if the Organizational Unit (OU) is enabled for the till. |
timeZoneId | integer | Time zone ID for the till. |
currencyId | integer | Currency ID for the till. |
languageId | integer | Language ID for the till. |
customField | Array | Custom field and its details associated with the till. |
default | boolean | true if this till is marked as the default for its org unit; false otherwise. |
warnings | Array | List of warnings related to the till. |
HTTP code | Description |
---|
404 | Wrong endpoint |