Dashboard
How it Works Documentation Quick Start PAPI — Pages & Assets MAPI — Dynamic Data Integrations SAPI — Sessions & Forms MCP Server OpenClaw Skill Tools Deploy Dashboard
Checkout Flow

Checkout Flow

⚡ Built-in — Platform Built-in

Orchestrate the checkout process: cart snapshot, customer details, payment creation, and completion with automatic order + stock + email. Works with Stripe and Mollie for payments.

⚡ Built-in — No Setup Required This integration is built into the WebsitePublisher platform. All endpoints are available immediately — no API key needed.

Endpoints (8)

POST initiate-checkout

Start a checkout from a cart. Snapshots cart items and totals. Returns checkout_token. Idempotent on the cart: re-calling returns the SAME checkout. If the cart changed since the checkout was created, the snapshot is refreshed to the current cart + totals and the response carries snapshot_refreshed=true. If a live mollie/stripe payment is already attached the checkout is NOT silently re-priced: it is returned with cart_changed=true + checkout_locked=true (plus divergence) so you can cancel-checkout and initiate again to re-price.

No input parameters required.

POST set-customer

Set customer details and shipping/billing address. Recalculates total if shipping or tax costs are provided.

No input parameters required.

POST create-payment

Create a payment for an active checkout. With provider "mollie"/"stripe" the provider is called server-side (vault keys never leave the server) and a redirect URL is returned. With provider "invoice" no online payment is created (deferred / "op factuur"): the checkout becomes completable and the resulting order gets status "pending" / payment_status "unpaid". Invoice mode requires the project setting allow_invoice_checkout. For mollie/stripe the checkout is re-priced to the current cart at charge time, so the amount sent to the provider always matches the live cart; a checkout that already has a confirmed payment is refused (complete it instead).

No input parameters required.

POST set-payment

Link an external payment to the checkout. Use create-payment instead for automatic payment creation. This endpoint is for manual linking only.

No input parameters required.

GET get-checkout-status

Get the full checkout state including items, customer, payment, and totals.

No input parameters required.

POST set-line-meta

Attach validated typed meta (e.g. a contact-lens prescription) to a checkout line, identified by product_sku and bound to the checkout token. Values are validated server-side against the meta definition + its config source, stored on the checkout, and promoted to the order line on completion. If product_sku matches no checkout line the call still succeeds and returns a LINE_NOT_MATCHED entry in warnings[] (the meta is stored but will not reach an order line). If it matches several lines (shared article code, or variants inheriting the product SKU) the call returns 409 and variant_id is required to pin the line.

No input parameters required.

POST complete-checkout

Complete the checkout after payment. Marks as paid, creates order, decrements stock, sends confirmation email. Idempotent: safe to call multiple times.

No input parameters required.

POST cancel-checkout

Cancel a checkout. Cart remains active and can be used for a new checkout.

No input parameters required.

MCP Tool Names

When using this integration through an AI assistant (Claude, ChatGPT, Cursor, etc.), the endpoints are available as MCP tools:

EndpointMCP Tool Name
initiate-checkout checkout-flow_initiate_checkout
set-customer checkout-flow_set_customer
create-payment checkout-flow_create_payment
set-payment checkout-flow_set_payment
get-checkout-status checkout-flow_get_checkout_status
set-line-meta checkout-flow_set_line_meta
complete-checkout checkout-flow_complete_checkout
cancel-checkout checkout-flow_cancel_checkout
← Back to all integrations