GET api/astActivity/activityCount/{assetID}
Get AssetActivityCounts WROTE THIS CALL AND THEN DIDN'T USE IT. KEPT IT THOUGH MIGHT NEED IT LATRER.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| assetID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AssetActionCount| Name | Description | Type | Additional information |
|---|---|---|---|
| ActionID | integer |
None. |
|
| ActionName | string |
None. |
|
| ActionCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ActionID": 1,
"ActionName": "sample string 2",
"ActionCount": 3
},
{
"ActionID": 1,
"ActionName": "sample string 2",
"ActionCount": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfAssetActionCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<AssetActionCount>
<ActionCount>3</ActionCount>
<ActionID>1</ActionID>
<ActionName>sample string 2</ActionName>
</AssetActionCount>
<AssetActionCount>
<ActionCount>3</ActionCount>
<ActionID>1</ActionID>
<ActionName>sample string 2</ActionName>
</AssetActionCount>
</ArrayOfAssetActionCount>