POST api/UberArrendo/cuentacorriente/contratos/{aIdContrato}/deposito

Request Information

URI Parameters

NameDescriptionTypeAdditional information
aIdContrato

integer

Required

Body Parameters

DepositoRequestDTO
NameDescriptionTypeAdditional information
LineaCaptura

string

None.

Importe

decimal number

None.

NumeroSemana

integer

None.

FechaDeposito

date

None.

Request Formats

application/json, text/json

Sample:
{
  "LineaCaptura": "sample string 1",
  "Importe": 2.0,
  "NumeroSemana": 1,
  "FechaDeposito": "2026-06-28T12:03:26.7659828-06:00"
}

application/xml, text/xml

Sample:
<DepositoRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DVA_ArrendoUber.DTO.Request">
  <FechaDeposito>2026-06-28T12:03:26.7659828-06:00</FechaDeposito>
  <Importe>2</Importe>
  <LineaCaptura>sample string 1</LineaCaptura>
  <NumeroSemana>1</NumeroSemana>
</DepositoRequestDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.