POST api/Financials/v1/Quote/Add

Agrega una cotización a la bandeja de disposiciones

Request Information

URI Parameters

None.

Body Parameters

Estructura de información a agregar

PortfolioDisbursementModel
NameDescriptionTypeAdditional information
DocumentUUID

globally unique identifier

None.

DocumentId

globally unique identifier

None.

OperationDate

date

None.

CreditExpirationDate

date

None.

InvestorCreditLineId

globally unique identifier

None.

InvestorName

string

None.

TransferAmount

decimal number

None.

InmediateAmount

decimal number

None.

TotalCredit

decimal number

None.

ProductDefinitionId

globally unique identifier

None.

GrantorId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "DocumentUUID": "08dd2e4b-0ec3-cb96-522b-6e3108c3f95e",
  "DocumentId": "08dd2e4b-0ec3-cb96-522b-6e3108c3f95f",
  "OperationDate": "2025-01-06T06:10:06.1616022-06:00",
  "CreditExpirationDate": "2025-01-06T06:10:06.1616022-06:00",
  "InvestorCreditLineId": "08dd2e4b-0ec3-cb96-522b-6e3108c3f960",
  "InvestorName": "sample string 6",
  "TransferAmount": 7.0,
  "InmediateAmount": 1.0,
  "TotalCredit": 8.0,
  "ProductDefinitionId": "08dd2e4b-0ec3-cb96-522b-6e3108c3f961",
  "GrantorId": "08dd2e4b-0ec3-cb96-522b-6e3108c3f962"
}

application/xml, text/xml

Sample:
<PortfolioDisbursementModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DocumentUUID>08dd2e4b-0ec3-cb96-522b-6e3108c3f95e</DocumentUUID>
  <DocumentId>08dd2e4b-0ec3-cb96-522b-6e3108c3f95f</DocumentId>
  <OperationDate>2025-01-06T06:10:06.1616022-06:00</OperationDate>
  <CreditExpirationDate>2025-01-06T06:10:06.1616022-06:00</CreditExpirationDate>
  <InvestorCreditLineId>08dd2e4b-0ec3-cb96-522b-6e3108c3f960</InvestorCreditLineId>
  <InvestorName>sample string 6</InvestorName>
  <TransferAmount>7</TransferAmount>
  <InmediateAmount>1</InmediateAmount>
  <TotalCredit>8</TotalCredit>
  <ProductDefinitionId>08dd2e4b-0ec3-cb96-522b-6e3108c3f961</ProductDefinitionId>
  <GrantorId>08dd2e4b-0ec3-cb96-522b-6e3108c3f962</GrantorId>
</PortfolioDisbursementModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PortfolioDisbursementModel'.

Response Information

Resource Description

ResponseModelApiOfObject
NameDescriptionTypeAdditional information
success

Indica si la solicitud se procesó de manera satisfactoria

boolean

None.

message

Mensaje de la solicitud

string

None.

messageDetail

Lista de mensajes

Collection of string

None.

failureCode

Código de error en caso de existir

string

None.

data

Layout de respuesta de la solicitud

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "messageDetail": [
    "sample string 1",
    "sample string 2"
  ],
  "failureCode": "sample string 3",
  "data": {}
}

application/xml, text/xml

Sample:
<ResponseModelApiOfObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <success>true</success>
  <message>sample string 2</message>
  <messageDetail>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </messageDetail>
  <failureCode>sample string 3</failureCode>
  <data />
</ResponseModelApiOfObject>