GET api/AppAutosRoro/Consultar?key={key}&Buscar={Buscar}&IDSucursal={IDSucursal}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
|
| Buscar | string |
Required |
|
| IDSucursal | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AppTableResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Procesado | boolean |
None. |
|
| Mensaje | string |
None. |
|
| AppTable | Collection of Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Procesado": true,
"Mensaje": "sample string 2",
"AppTable": [
[
"sample string 1",
"sample string 2"
],
[
"sample string 1",
"sample string 2"
]
]
}
application/xml, text/xml
Sample:
<AppTableResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CIMA_WebAPI_Dapper.Models">
<AppTable xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:ArrayOfstring>
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</d2p1:ArrayOfstring>
<d2p1:ArrayOfstring>
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</d2p1:ArrayOfstring>
</AppTable>
<Mensaje>sample string 2</Mensaje>
<Procesado>true</Procesado>
</AppTableResponse>