GET api/TillMenu/GetPendingActions?token={token}

Retrieves a list of actions that need to be performed on the till

Request Information

URI Parameters

NameDescriptionTypeAdditional information
token

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EskimoClassLibraries.clsWebTillAction
NameDescriptionTypeAdditional 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": "2024-05-03T06:05:32.9553537+01:00",
    "DateCreated": "2024-05-03T06:05:32.9553537+01:00",
    "Id": "sample string 3"
  },
  {
    "ActionType": 1,
    "DateLastUpdated": "2024-05-03T06:05:32.9553537+01:00",
    "DateCreated": "2024-05-03T06:05:32.9553537+01: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>2024-05-03T06:05:32.9553537+01:00</DateCreated>
    <DateLastUpdated>2024-05-03T06:05:32.9553537+01:00</DateLastUpdated>
  </clsWebTillAction>
  <clsWebTillAction>
    <Id>sample string 3</Id>
    <ActionType>DownloadAll</ActionType>
    <DateCreated>2024-05-03T06:05:32.9553537+01:00</DateCreated>
    <DateLastUpdated>2024-05-03T06:05:32.9553537+01:00</DateLastUpdated>
  </clsWebTillAction>
</ArrayOfclsWebTillAction>