POST api/Recorrido
Request Information
URI Parameters
None.
Body Parameters
RecorridoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| qrcode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"qrcode": "sample string 2"
}
application/xml, text/xml
Sample:
<RecorridoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SP_Servicio_Descuentos.Models"> <qrcode>sample string 2</qrcode> <token>sample string 1</token> </RecorridoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RecorridoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Folio | string |
None. |
|
| estado | string |
None. |
|
| MontoActual | decimal number |
None. |
|
| Message | string |
None. |
|
| Result | string |
None. |
|
| operaciones | Collection of Operaciones |
None. |
Response Formats
application/json, text/json
Sample:
{
"Folio": "sample string 1",
"estado": "sample string 2",
"MontoActual": 3.1,
"Message": "sample string 4",
"Result": "sample string 5",
"operaciones": null
}
application/xml, text/xml
Sample:
<RecorridoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SP_Servicio_Descuentos.Models"> <Folio>sample string 1</Folio> <Message>sample string 4</Message> <MontoActual>3.1</MontoActual> <Result>sample string 5</Result> <estado>sample string 2</estado> <operaciones i:nil="true" /> </RecorridoResponse>