Explore a code sample of an integration with Inflow Checkout.
Create a Checkout Session
To create a Checkout Session, you need to send a POST request to the Create a payment endpoint of the Inflow API. At a minimum, you can create a checkout with the following data:
Field | Type | Description |
---|---|---|
currency | string | The currency of the payment. |
successUrl | string | The user will be redirected to this URL after they successfully finish the payment. |
cancelUrl | string | The user will be redirected to this URL when they close the Checkout. |
products | array of objects | The list of products to purchase. |
Example payload
// Recommended Configuration
{
"currency": "EUR",
"successUrl": "https://my-website.com/success",
"errorUrl": "https://my-website.com/try-again",
"products": [
{
"name":"product",
"price":101,// minimum price is 101 (1.01 euros)
"quantity":1
}
]
}
Response
{
"paymentId": "pay_<unique_id>",
"purchaseUrl": "https://dev.checkout.inflowpay.xyz/pay/pay_<unique_id>"
}
The response will include the data below:
Field | Type | Description |
---|---|---|
paymentId | string | The unique Inflow ID for this checkoutSession. |
purchaseUrl | string | The URL to which you need to redirect the user. |