Payment Apis
| Method | Endpoint | Auth | Description |
|---|---|---|---|
| POST | /api/v1/payments | Bearer | Initiate |
| GET | /api/v1/payments/{id} | Bearer | Status |
| POST | /api/v1/payments/{id}/refund | Bearer | Refund |
Example Request
{
"example": "See service documentation for full schemas"
}
Example Response
{
"id": "uuid",
"status": "SUCCESS",
"correlation_id": "uuid"
}
All write endpoints require Idempotency-Key header where applicable.