POST api/Remesas/Buscar
Request Information
URI Parameters
None.
Body Parameters
TB_SolicitudRemesas| Name | Description | Type | Additional information |
|---|---|---|---|
| idProveedor | globally unique identifier |
None. |
|
| folioRemesa | string |
None. |
|
| status | string |
None. |
|
| fechaInicio | string |
None. |
|
| fechaFin | string |
None. |
|
| pageSize | integer |
None. |
|
| pageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"idProveedor": "003bf439-3eb7-4f24-b8f8-c59352ccbca3",
"folioRemesa": "sample string 2",
"status": "sample string 3",
"fechaInicio": "sample string 4",
"fechaFin": "sample string 5",
"pageSize": 6,
"pageNumber": 7
}
application/xml, text/xml
Sample:
<TB_SolicitudRemesas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiRadar"> <fechaFin>sample string 5</fechaFin> <fechaInicio>sample string 4</fechaInicio> <folioRemesa>sample string 2</folioRemesa> <idProveedor>003bf439-3eb7-4f24-b8f8-c59352ccbca3</idProveedor> <pageNumber>7</pageNumber> <pageSize>6</pageSize> <status>sample string 3</status> </TB_SolicitudRemesas>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MsgRespuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| codigo | string |
None. |
|
| mensaje | string |
None. |
|
| contenido | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"codigo": "sample string 1",
"mensaje": "sample string 2",
"contenido": {}
}
application/xml, text/xml
Sample:
<MsgRespuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiRadar"> <codigo>sample string 1</codigo> <contenido /> <mensaje>sample string 2</mensaje> </MsgRespuesta>