Home
VTEX
Vtex Getcartinstallments Example
Vtex Getcartinstallments Example
Commerce E-Commerce Retail Marketplace Payments
Vtex Getcartinstallments Example is an example object payload from VTEX, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
Top-level fields
operationId method path summary requestExamples responseExamples
Example Payload
{
"operationId": "GetCartInstallments",
"method": "GET",
"path": "/api/checkout/pub/orderForm/{orderFormId}/installments",
"summary": "VTex Cart installments",
"requestExamples": [],
"responseExamples": [
{
"status": "200",
"contentType": "application/json",
"example": {
"paymentSystem": 2,
"bin": null,
"paymentName": null,
"paymentGroupName": null,
"value": 32000,
"installments": [
{
"count": 1,
"hasInterestRate": false,
"interestRate": 0,
"value": 32000,
"total": 32000,
"sellerMerchantInstallments": [
{
"id": "MyStore",
"count": 1,
"hasInterestRate": false,
"interestRate": 0,
"value": 32000,
"total": 32000
}
]
},
{
"count": 2,
"hasInterestRate": false,
"interestRate": 0,
"value": 1600,
"total": 32000,
"sellerMerchantInstallments": [
{
"id": "MyStore",
"count": 2,
"hasInterestRate": false,
"interestRate": 0,
"value": 1600,
"total": 32000
}
]
},
{
"count": 3,
"hasInterestRate": false,
"interestRate": 0,
"value": 10666,
"total": 32000,
"sellerMerchantInstallments": [
{
"id": "MyStore",
"count": 3,
"hasInterestRate": false,
"interestRate": 0,
"value": 10666,
"total": 32000
}
]
}
]
}
}
]
}