v1
latestOpenAPI 3.0.02026-07-24103118224.7 KBCheckout Sessions
Retrieve a checkout session
Returns the checkout session, including its status, associated paymentId (present once the buyer has submitted a payment method) and custom metadata.
Prefer subscribing to checkout_session.* merchant webhooks to be notified when the session completes and the paymentId is available. This endpoint is also available for on-demand retrieval.
get/api/checkout/sessions/{sessionId}
Path parameters
sessionIdstring required
Example:sess_abc123
Unique identifier of the checkout session
Response
Example response
{
"id": "sess_abc123",
"status": "open",
"type": "one_time",
"amount": 2999,
"currency": "eur",
"paymentId": "pay_abc123",
"checkoutUrl": "https://checkout.inflowpay.com/pay/sess_abc123"
}