Authenticate
Use credentials supplied through a secure approved channel.
OritFlow API
A code-first preview of payment requests, events and implementation guidance. Production documentation is not yet public.
Integration flow
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 onlyDesign event handling around signature verification, acknowledgement and idempotent processing.
{
"event": "payment.updated",
"reference": "ORDER-10001",
"status": "accepted"
}Use credentials supplied through a secure approved channel.
Send an idempotent payment request with a unique business reference.
Verify and process status events according to the final contract.