BNPL API
Redirect URLsFAQ
BNPL API
Redirect URLsFAQ
milpay doc
  1. BNPL API
  • Back to home
  • One Click
  • Calculation
    POST
  • Approve
    POST
  • Application
    POST
  1. BNPL API

Calculation

STAGING Gateway
https://gateway-staging.instacash.hu
STAGING Gateway
https://gateway-staging.instacash.hu
POST
https://gateway-staging.instacash.hu
/bnpl/external/one-click/calculation

Request

Authorization
API Key
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
*/*
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://gateway-staging.instacash.hu/bnpl/external/one-click/calculation' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "offerId": 0,
    "totalAmount": 1,
    "customerPhone": "string"
}'
Response Response Example
{
    "calculationResponse": {
        "payments": [
            {
                "seq": 0,
                "dueDate": "2019-08-24",
                "sum": 1,
                "fee": 0
            }
        ],
        "total": 1,
        "fee": 0,
        "rate": 0,
        "downPayment": 0,
        "downPaymentTotal": 0,
        "thm": 0,
        "currencyIso": "string"
    },
    "bankCard": {
        "MaskedPan": "string",
        "BankCardType": "Unknown",
        "ValidThruYear": "string",
        "ValidThruMonth": "string"
    },
    "lastShippingAddress": {
        "country": "st",
        "city": "string",
        "region": "st",
        "zip": "string",
        "street": "string",
        "street2": "string",
        "street3": "string",
        "fullName": "string"
    }
}
Next
Approve
Built with