GET Menu/Services/{id}?group={group}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| group | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MenuServices| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Unit ID |
integer |
None. |
| ServiceId |
Service ID |
integer |
None. |
| Name |
Service Description / Public Name (if is null or blank, Service Name is substituted) |
string |
Max length: 250 |
| WaitTimeAvg |
Average wait time in seconds (from stats cache). If none waiting, defaults to 60 |
integer |
None. |
| WaitTimeMax |
Maximum wait time in seconds (from stats cache). If none waiting, defaults to 60 |
integer |
None. |
| WaitCount |
Number of cases waiting (from stats cache) |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"ServiceId": 2,
"Name": "sample string 3",
"WaitTimeAvg": 4,
"WaitTimeMax": 5,
"WaitCount": 6
},
{
"Id": 1,
"ServiceId": 2,
"Name": "sample string 3",
"WaitTimeAvg": 4,
"WaitTimeMax": 5,
"WaitCount": 6
}
]