GET api/Mobile/AssetAdditionalTypes?TypeID={TypeID}
Get Asset Addition Types
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
TypeID | integer |
Default value is -1 |
Body Parameters
None.
Response Information
Resource Description
IBMS_Cloud_API.Controllers.MobileAssetsController+AdditionalTypesResultName | Description | Type | Additional information |
---|---|---|---|
Results | Collection of IBMS_Cloud_API.Controllers.MobileAssetsController+AssetAdditionalType |
None. |
Response Formats
application/json, text/json
Sample:
{ "Results": [ { "TypeID": 1, "Description": "sample string 2", "ExternalLink": "sample string 3" }, { "TypeID": 1, "Description": "sample string 2", "ExternalLink": "sample string 3" } ] }
text/html
Sample:
{"Results":[{"TypeID":1,"Description":"sample string 2","ExternalLink":"sample string 3"},{"TypeID":1,"Description":"sample string 2","ExternalLink":"sample string 3"}]}
application/xml, text/xml
Sample:
<MobileAssetsController.AdditionalTypesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBMS_Cloud_API.Controllers"> <Results> <MobileAssetsController.AssetAdditionalType> <Description>sample string 2</Description> <ExternalLink>sample string 3</ExternalLink> <TypeID>1</TypeID> </MobileAssetsController.AssetAdditionalType> <MobileAssetsController.AssetAdditionalType> <Description>sample string 2</Description> <ExternalLink>sample string 3</ExternalLink> <TypeID>1</TypeID> </MobileAssetsController.AssetAdditionalType> </Results> </MobileAssetsController.AdditionalTypesResult>