Developer Docs

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:

FieldTypeDescription
currencystringThe currency of the payment.
successUrlstringThe user will be redirected to this URL after they successfully finish the payment.
cancelUrlstringThe user will be redirected to this URL when they close the Checkout.
productsarray of objectsThe 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:

FieldTypeDescription
paymentIdstringThe unique Inflow ID for this checkoutSession.
purchaseUrlstringThe URL to which you need to redirect the user.