VTEX · Example Payload

Vtex Getcartinstallments Example

CommerceE-CommerceRetailMarketplacePayments

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

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "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
              }
            ]
          }
        ]
      }
    }
  ]
}