v1

latestOpenAPI 3.1.02026-07-14270217.5 KB

Floa Pay - Simulation

Creates a request to allow the client to check the installment options available using Floa Pay service for that amount and country.

post/v1.02/floa/simulate

Request body

countryCode'PT' | 'ES' | 'FR' required

Which country are you going to ship (sell) the product

Response

201

transactionStatusstring

Example response

{
  "transactionStatus": "Success",
  "installmentOptions": [
    {
      "productName": "4X BC FREE PT",
      "productCode": "BC4XFPT",
      "countryCode": "PT",
      "installmentCount": 4,
      "customerFees": "0,00",
      "customerTotalAmount": "2000,00",
      "merchantFinancedAmount": "2000,00",
      "merchantFees": "0,00",
      "merchantServiceFees": "40,00",
      "merchantTotalAmount": "40,00",
      "simulatedInstallments": [
        {
          "rank": 1,
          "date": "2024-10-04",
          "amount": "500,00"
        }
      ],
      "currency": "EUR"
    }
  ]
}