POST api/CreaCotizacion

Request Information

URI Parameters

None.

Body Parameters

ParamCreaCotizacion
NameDescriptionTypeAdditional information
IdCliente

string

None.

IdProducto

string

None.

Moneda

string

None.

Monto

integer

None.

ListaSector

string

None.

TipoId

string

None.

Identificacion

string

None.

Nombre

string

None.

FotoIdFrontal

string

None.

FotoIdPosterior

string

None.

MonedaIngresos

string

None.

MontoIngresos

integer

None.

TipoIngreso

string

None.

Firma

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IdCliente": "sample string 1",
  "IdProducto": "sample string 2",
  "Moneda": "sample string 3",
  "Monto": 4,
  "ListaSector": "sample string 5",
  "TipoId": "sample string 6",
  "Identificacion": "sample string 7",
  "Nombre": "sample string 8",
  "FotoIdFrontal": "sample string 9",
  "FotoIdPosterior": "sample string 10",
  "MonedaIngresos": "sample string 11",
  "MontoIngresos": 12,
  "TipoIngreso": "sample string 13",
  "Firma": "sample string 14"
}

application/xml, text/xml

Sample:
<ParamCreaCotizacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Request">
  <Firma>sample string 14</Firma>
  <FotoIdFrontal>sample string 9</FotoIdFrontal>
  <FotoIdPosterior>sample string 10</FotoIdPosterior>
  <IdCliente>sample string 1</IdCliente>
  <IdProducto>sample string 2</IdProducto>
  <Identificacion>sample string 7</Identificacion>
  <ListaSector>sample string 5</ListaSector>
  <Moneda>sample string 3</Moneda>
  <MonedaIngresos>sample string 11</MonedaIngresos>
  <Monto>4</Monto>
  <MontoIngresos>12</MontoIngresos>
  <Nombre>sample string 8</Nombre>
  <TipoId>sample string 6</TipoId>
  <TipoIngreso>sample string 13</TipoIngreso>
</ParamCreaCotizacion>

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>