GET api/GasTablasPed?ChoferCons={ChoferCons}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ChoferCons | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of chofere| Name | Description | Type | Additional information |
|---|---|---|---|
| autob | integer |
None. |
|
| codigo_chofer | decimal number |
None. |
|
| chofer | string |
None. |
|
| activo | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"autob": 1,
"codigo_chofer": 1.0,
"chofer": "sample string 2",
"activo": true
},
{
"autob": 1,
"codigo_chofer": 1.0,
"chofer": "sample string 2",
"activo": true
}
]
text/html
Sample:
[{"autob":1,"codigo_chofer":1.0,"chofer":"sample string 2","activo":true},{"autob":1,"codigo_chofer":1.0,"chofer":"sample string 2","activo":true}]
application/xml, text/xml
Sample:
<ArrayOfchofere xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1">
<chofere>
<activo>true</activo>
<autob>1</autob>
<chofer>sample string 2</chofer>
<codigo_chofer>1</codigo_chofer>
</chofere>
<chofere>
<activo>true</activo>
<autob>1</autob>
<chofer>sample string 2</chofer>
<codigo_chofer>1</codigo_chofer>
</chofere>
</ArrayOfchofere>