DOCUMENTATION PREVIEW

OritFlow API

Build payment flows with clarity.

A code-first preview of payment requests, events and implementation guidance. Production documentation is not yet public.

Integration flow

Request. Process. Receive the event.

Final endpoints, payloads, authentication and events will follow the confirmed production contract.

POST /v1/payments
Authorization: Bearer <API_KEY>
Idempotency-Key: <UNIQUE_KEY>

{
  "amount": 10000,
  "currency": "USD",
  "payment_method": "card",
  "reference": "ORDER-10001"
}

// Illustrative request only
WEBHOOK PREVIEW

payment.updated

Design event handling around signature verification, acknowledgement and idempotent processing.

{
  "event": "payment.updated",
  "reference": "ORDER-10001",
  "status": "accepted"
}
01

Authenticate

Use credentials supplied through a secure approved channel.

02

Create request

Send an idempotent payment request with a unique business reference.

03

Handle events

Verify and process status events according to the final contract.

Production API reference, credentials, SDKs, event names and test data are coming soon. No sample on this page should be used against a production system.