POST api/shipping/InstallmentOptions
Request Information
URI Parameters
None.
Body Parameters
InstallmentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Campaña | string |
None. |
|
| Valor | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Campaña": "sample string 1",
"Valor": 2.0
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
InstallmentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentOptions | Collection of PaymentOption |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| CodeError | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PaymentOptions": [
{
"CreditCardType": "sample string 1",
"InstallmentOptions": [
{
"Description": "sample string 1",
"Quotas": 2,
"QuotaValue": 3.0
},
{
"Description": "sample string 1",
"Quotas": 2,
"QuotaValue": 3.0
}
]
},
{
"CreditCardType": "sample string 1",
"InstallmentOptions": [
{
"Description": "sample string 1",
"Quotas": 2,
"QuotaValue": 3.0
},
{
"Description": "sample string 1",
"Quotas": 2,
"QuotaValue": 3.0
}
]
}
],
"Status": 1,
"Message": "sample string 2",
"CodeError": "sample string 3",
"Exception": "sample string 4"
}