GET apioauth/v4/asset
Get all the assets you have created
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of OAuthAssetResponseModel
Collection of OAuthAssetResponseModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| TagId | 
                         The asst tag id  | 
                    string | 
                             None.  | 
                
| AssetName | 
                         The asset name  | 
                    string | 
                             None.  | 
                
| AssetType | 
                         The type of the asset  | 
                    MobileAssetType | 
                             None.  | 
                
| AssetId | 
                         The unique id of the asset generated by the system  | 
                    integer | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "TagId": "sample string 1",
    "AssetName": "sample string 2",
    "AssetType": 1,
    "AssetId": 3
  },
  {
    "TagId": "sample string 1",
    "AssetName": "sample string 2",
    "AssetType": 1,
    "AssetId": 3
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfOAuthAssetResponseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <OAuthAssetResponseModel>
    <TagId>sample string 1</TagId>
    <AssetName>sample string 2</AssetName>
    <AssetType>Driver</AssetType>
    <AssetId>3</AssetId>
  </OAuthAssetResponseModel>
  <OAuthAssetResponseModel>
    <TagId>sample string 1</TagId>
    <AssetName>sample string 2</AssetName>
    <AssetType>Driver</AssetType>
    <AssetId>3</AssetId>
  </OAuthAssetResponseModel>
</ArrayOfOAuthAssetResponseModel>