GET Tickets/Waiting/{UnitId}
Get Waiting tickets for a unit
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UnitId |
Unit ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Table of Tickets sorted by enqueue time - oldest first
Collection of TicketsWaitingResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Row |
Row index |
integer |
None. |
| ProcessId |
Process Id |
integer |
None. |
| CaseId |
Case Id |
integer |
None. |
| EnqueueTime |
Server time of enqueue |
date |
None. |
| ReceptionPointId |
Reception Point Id |
integer |
None. |
| QCode |
Ticket QCode (ticket prefix) |
string |
Max length: 10 |
| QNumber |
Ticket QNumber (ticket suffix) |
integer |
None. |
| Subject |
Case Subject |
string |
Max length: 100 |
| ServiceName |
Service Name |
string |
Max length: 50 |
| UnitId |
Unit Id |
integer |
None. |
| UnitName |
Unit Name |
string |
Max length: 50 |
| PersonalId |
Vendor's customer unique Id |
string |
Max length: 50 |
| FirstName |
Customer First Name |
string |
Max length: 50 |
| LastName |
Customer Last Name (If used, consumer often shortens this to an initial) |
string |
Max length: 50 |
| IsAppointment |
Is this case an appointment? |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Row": 1,
"ProcessId": 2,
"CaseId": 3,
"EnqueueTime": "2026-04-05T04:17:15.9346743+10:00",
"ReceptionPointId": 5,
"QCode": "sample string 6",
"QNumber": 7,
"Subject": "sample string 8",
"ServiceName": "sample string 9",
"UnitId": 10,
"UnitName": "sample string 11",
"PersonalId": "sample string 12",
"FirstName": "sample string 13",
"LastName": "sample string 14",
"IsAppointment": true
},
{
"Row": 1,
"ProcessId": 2,
"CaseId": 3,
"EnqueueTime": "2026-04-05T04:17:15.9346743+10:00",
"ReceptionPointId": 5,
"QCode": "sample string 6",
"QNumber": 7,
"Subject": "sample string 8",
"ServiceName": "sample string 9",
"UnitId": 10,
"UnitName": "sample string 11",
"PersonalId": "sample string 12",
"FirstName": "sample string 13",
"LastName": "sample string 14",
"IsAppointment": true
}
]