GET api/AppUsages/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AppUsage| Name | Description | Type | Additional information |
|---|---|---|---|
| AppUsageID | integer |
None. |
|
| DeviceID | integer |
None. |
|
| AppID | integer |
None. |
|
| Connection | string |
None. |
|
| UserID | string |
None. |
|
| UserIDType | string |
None. |
|
| StartDateTime | date |
None. |
|
| EndDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"AppUsageID": 1,
"DeviceID": 2,
"AppID": 3,
"Connection": "sample string 4",
"UserID": "sample string 5",
"UserIDType": "sample string 6",
"StartDateTime": "2026-05-26T15:27:31.9934593-05:00",
"EndDateTime": "2026-05-26T15:27:31.9934593-05:00"
}
application/xml, text/xml
Sample:
<AppUsage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SWF.MobileAppUsageTracking.Models"> <AppID>3</AppID> <AppUsageID>1</AppUsageID> <Connection>sample string 4</Connection> <DeviceID>2</DeviceID> <EndDateTime>2026-05-26T15:27:31.9934593-05:00</EndDateTime> <StartDateTime>2026-05-26T15:27:31.9934593-05:00</StartDateTime> <UserID>sample string 5</UserID> <UserIDType>sample string 6</UserIDType> </AppUsage>