GET api/Admin/EInk/Badges/summary
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
EInkBadgeFleetSummaryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| InStorage | integer |
None. |
|
| Unhealthy | integer |
None. |
|
| PerCustomer | Collection of EInkBadgeFleetCustomerCountDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"Total": 1,
"InStorage": 2,
"Unhealthy": 3,
"PerCustomer": [
{
"TenantId": 1,
"CustomerName": "sample string 1",
"Count": 2
},
{
"TenantId": 1,
"CustomerName": "sample string 1",
"Count": 2
}
]
}
application/xml, text/xml
Sample:
<EInkBadgeFleetSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.EInk.Badges">
<InStorage>2</InStorage>
<PerCustomer>
<EInkBadgeFleetCustomerCountDTO>
<Count>2</Count>
<CustomerName>sample string 1</CustomerName>
<TenantId>1</TenantId>
</EInkBadgeFleetCustomerCountDTO>
<EInkBadgeFleetCustomerCountDTO>
<Count>2</Count>
<CustomerName>sample string 1</CustomerName>
<TenantId>1</TenantId>
</EInkBadgeFleetCustomerCountDTO>
</PerCustomer>
<Total>1</Total>
<Unhealthy>3</Unhealthy>
</EInkBadgeFleetSummaryDTO>