Employee till settings¶
Get or update employee till settings.
Get employee till settings¶
Gets employee information.
Endpoint /api/v1.0/Switch/EmployeeTill/{employeeId}.
Parameters:
employeeIdEmployee ID
Response:
{
"employeeId": "string",
"settings": [
{
"name": "Handedness",
"type": "String",
"possibleValues": [
"string"
],
"currentValue": {
"valueEnum": "string",
"valueString": "string",
"valueDateTime": "2024-12-11T14:57:42.007Z",
"valueInteger": 0,
"valueDecimal": 0
}
}
]
}
Save employee till settings¶
Use endpoint /api/v1.0/Switch/EmployeeTill.
Request:
{
"employeeId": "string",
"tillSettings": [
{
"name": "string",
"value": {
"valueEnum": "string",
"valueString": "string",
"valueDateTime": "2024-12-11T14:58:16.101Z",
"valueInteger": 0,
"valueDecimal": 0
}
}
]
}