GET api/Status?type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EstadosModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Estado | string |
None. |
|
| Type | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Estado": "sample string 2",
"Type": "sample string 3"
},
{
"Id": 1,
"Estado": "sample string 2",
"Type": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfEstadosModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ataxi.Models">
<EstadosModel>
<Estado>sample string 2</Estado>
<Id>1</Id>
<Type>sample string 3</Type>
</EstadosModel>
<EstadosModel>
<Estado>sample string 2</Estado>
<Id>1</Id>
<Type>sample string 3</Type>
</EstadosModel>
</ArrayOfEstadosModel>