POST api/ValoraCotizacion

Request Information

URI Parameters

None.

Body Parameters

ParamValoraCotizacion
NameDescriptionTypeAdditional information
IdCotizacion

string

None.

IdUsuario

string

None.

MontoAprobado

integer

None.

Interes

decimal number

None.

Plazo

integer

None.

Cuota

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "IdCotizacion": "sample string 1",
  "IdUsuario": "sample string 2",
  "MontoAprobado": 3,
  "Interes": 4.1,
  "Plazo": 5,
  "Cuota": 6
}

application/xml, text/xml

Sample:
<ParamValoraCotizacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Request">
  <Cuota>6</Cuota>
  <IdCotizacion>sample string 1</IdCotizacion>
  <IdUsuario>sample string 2</IdUsuario>
  <Interes>4.1</Interes>
  <MontoAprobado>3</MontoAprobado>
  <Plazo>5</Plazo>
</ParamValoraCotizacion>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
Data

Object

None.

IsSuccess

boolean

None.

UserMessage

string

None.

TechMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {},
  "IsSuccess": true,
  "UserMessage": "sample string 3",
  "TechMessage": "sample string 4"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Response">
  <Data />
  <IsSuccess>true</IsSuccess>
  <TechMessage>sample string 4</TechMessage>
  <UserMessage>sample string 3</UserMessage>
</BaseResponse>