GET Term/GetTermList
Returns a list of terms.
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns a list of terms.
AgvTermName | Description | Type | Additional Information |
---|---|---|---|
Status |
Status of the API call. |
string | |
Message |
Message of the API call. |
string | |
Count |
Count of how many Term JSON dictionaries. |
string | |
Terms |
JSON dictionary of Term. |
Collection of Term |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "sample string 3", "Terms": [ { "ID": "sample string 1", "Name": "sample string 2" }, { "ID": "sample string 1", "Name": "sample string 2" } ] }
application/xml, text/xml
Sample:
<AgvTerm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Term"> <Count>sample string 3</Count> <Message>sample string 2</Message> <Status>sample string 1</Status> <Terms> <Term> <ID>sample string 1</ID> <Name>sample string 2</Name> </Term> <Term> <ID>sample string 1</ID> <Name>sample string 2</Name> </Term> </Terms> </AgvTerm>