POST https://{{serverName}}/wsserverlp/api/v2/aggregators/ListenQueue
{
"queueType": "enum string"
}
// В очереди нет данных
{
"responseCommon": {
"asyncCode": "NoOperations"
}
}
// Поступил ответ по задаче
{
"taskResponse": {
----------task response json---------
},
"responseCommon": {
"taskGuid": "guid string",
"taskType": "enum string",
"objectId": int
}
}
// Произошла ошибка при выполнении задачи
{
"responseCommon": {
"taskGuid": "guid string",
"taskType": "enum string",
"objectId": int
},
"error": {
----------error response json---------
}
}
// Поступило событие от кассы
{
"eventResponse": {
----------agent event response json---------
},
"responseCommon": {
"taskType": "Event",
"objectId": int
},
"error": {
----------error response json---------
}
}