PPylon Developers

Checkout flow

Reservations, orders, and payments — how a partner completes a ticket purchase.

Status: placeholder. Expand once the checkout endpoints are stabilized and annotated.

The checkout flow is:

  1. Reserve inventoryPOST /api/v1/reservations locks ticket inventory for a short window.
  2. Create an orderPOST /api/v1/orders converts a reservation into an order.
  3. Collect paymentPOST /api/v1/payments/intents starts a payment intent (Stripe under the hood).
  4. Confirm — on successful payment, Pylon issues the tickets.

Each step is documented endpoint-by-endpoint in the sidebar under the Reservations, Orders, and Payments tags.

Idempotency

Mutating endpoints accept an Idempotency-Key header. Partners should always send one to safely retry on network failures.

Errors

Pylon returns RFC 7807 problem details for error responses. See the reference for error schemas per endpoint.

On this page