GET api/TrackStatus/{id}
Looks up a specific status
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Tools_RequestTrackStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Status | string |
None. |
|
| KeyColor | string |
None. |
|
| SortOrder | integer |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Status": "sample string 2",
"KeyColor": "sample string 3",
"SortOrder": 1,
"Description": "sample string 4"
}
application/xml, text/xml
Sample:
<Tools_RequestTrackStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ElabDataAccess"> <Description>sample string 4</Description> <ID>1</ID> <KeyColor>sample string 3</KeyColor> <SortOrder>1</SortOrder> <Status>sample string 2</Status> </Tools_RequestTrackStatus>