GET api/TillMenu/GetPendingActions?token={token}
Retrieves a list of actions that need to be performed on the till
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EskimoClassLibraries.clsWebTillAction| Name | Description | Type | Additional information |
|---|---|---|---|
| ActionType | EskimoClassLibraries.clsWebTillActionBase+ActionTypeEnum |
Required |
|
| DateLastUpdated | date |
None. |
|
| DateCreated | date |
None. |
|
| Id | string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"ActionType": 1,
"DateLastUpdated": "2025-12-13T07:35:10.0160844+00:00",
"DateCreated": "2025-12-13T07:35:10.0160844+00:00",
"Id": "sample string 3"
},
{
"ActionType": 1,
"DateLastUpdated": "2025-12-13T07:35:10.0160844+00:00",
"DateCreated": "2025-12-13T07:35:10.0160844+00:00",
"Id": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfclsWebTillAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries">
<clsWebTillAction>
<Id>sample string 3</Id>
<ActionType>DownloadAll</ActionType>
<DateCreated>2025-12-13T07:35:10.0160844+00:00</DateCreated>
<DateLastUpdated>2025-12-13T07:35:10.0160844+00:00</DateLastUpdated>
</clsWebTillAction>
<clsWebTillAction>
<Id>sample string 3</Id>
<ActionType>DownloadAll</ActionType>
<DateCreated>2025-12-13T07:35:10.0160844+00:00</DateCreated>
<DateLastUpdated>2025-12-13T07:35:10.0160844+00:00</DateLastUpdated>
</clsWebTillAction>
</ArrayOfclsWebTillAction>