POST api/Desembolso_Bulk
Request Information
URI Parameters
None.
Body Parameters
Collection of DesembolsoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| desembolsoId | integer |
None. |
|
| sucursalId | integer |
None. |
|
| tipoMovimientoId | integer |
None. |
|
| cuenta | string |
None. |
|
| productoId | integer |
None. |
|
| descripcion | string |
None. |
|
| importe | decimal number |
None. |
|
| fechaCaptura | date |
None. |
|
| clienteExternoId | string |
None. |
|
| nombreCliente | string |
None. |
|
| sociaId | integer |
None. |
|
| referencias | string |
None. |
|
| cajeroCapturaId | string |
None. |
|
| creditoId | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"desembolsoId": 1,
"sucursalId": 1,
"tipoMovimientoId": 2,
"cuenta": "sample string 3",
"productoId": 4,
"descripcion": "sample string 5",
"importe": 6.0,
"fechaCaptura": "2026-03-17T13:53:25.6877626-06:00",
"clienteExternoId": "sample string 8",
"nombreCliente": "sample string 9",
"sociaId": 10,
"referencias": "sample string 11",
"cajeroCapturaId": "sample string 12",
"creditoId": 13
},
{
"desembolsoId": 1,
"sucursalId": 1,
"tipoMovimientoId": 2,
"cuenta": "sample string 3",
"productoId": 4,
"descripcion": "sample string 5",
"importe": 6.0,
"fechaCaptura": "2026-03-17T13:53:25.6877626-06:00",
"clienteExternoId": "sample string 8",
"nombreCliente": "sample string 9",
"sociaId": 10,
"referencias": "sample string 11",
"cajeroCapturaId": "sample string 12",
"creditoId": 13
}
]
application/xml, text/xml
Sample:
<ArrayOfDesembolsoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
<DesembolsoRequest>
<cajeroCapturaId>sample string 12</cajeroCapturaId>
<clienteExternoId>sample string 8</clienteExternoId>
<creditoId>13</creditoId>
<cuenta>sample string 3</cuenta>
<descripcion>sample string 5</descripcion>
<desembolsoId>1</desembolsoId>
<fechaCaptura>2026-03-17T13:53:25.6877626-06:00</fechaCaptura>
<importe>6</importe>
<nombreCliente>sample string 9</nombreCliente>
<productoId>4</productoId>
<referencias>sample string 11</referencias>
<sociaId>10</sociaId>
<sucursalId>1</sucursalId>
<tipoMovimientoId>2</tipoMovimientoId>
</DesembolsoRequest>
<DesembolsoRequest>
<cajeroCapturaId>sample string 12</cajeroCapturaId>
<clienteExternoId>sample string 8</clienteExternoId>
<creditoId>13</creditoId>
<cuenta>sample string 3</cuenta>
<descripcion>sample string 5</descripcion>
<desembolsoId>1</desembolsoId>
<fechaCaptura>2026-03-17T13:53:25.6877626-06:00</fechaCaptura>
<importe>6</importe>
<nombreCliente>sample string 9</nombreCliente>
<productoId>4</productoId>
<referencias>sample string 11</referencias>
<sociaId>10</sociaId>
<sucursalId>1</sucursalId>
<tipoMovimientoId>2</tipoMovimientoId>
</DesembolsoRequest>
</ArrayOfDesembolsoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DesembolsoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| creditoId | integer |
None. |
|
| responseCode | integer |
None. |
|
| responseMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"creditoId": 1,
"responseCode": 2,
"responseMessage": "sample string 3"
}
application/xml, text/xml
Sample:
<DesembolsoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO"> <responseCode>2</responseCode> <responseMessage>sample string 3</responseMessage> <creditoId>1</creditoId> </DesembolsoResponse>