v1
latestOpenAPI 3.0.12026-07-225791279.7 KBAuth-Capture-Void
Get Single Authorization
This endpoint retrieves details of a single authorization by its authorization_reference.
Notes:
- authorization_reference:: Must exist and belong to the requesting merchant.
- Merchant Ownership: Strictly enforced - only the business that created the authorization can retrieve it. Attempting to access another business’s authorization returns 403 Forbidden.
- Authentication: Valid Authorization header required (same format as authorize endpoint).
- Security: The system verifies business ownership by comparing the authenticated business.
get/card/auth_capture/authorize/{authorization_reference}
Path parameters
authorization_referencestring required
The authorization reference from the Authorize response
Response
Payment successful
Example response
{
"status": "AUTHORIZED",
"message": "Authorization successful",
"authorization_reference": "AUTH-1234567890",
"authorization_amount": 100,
"remaining_amount": 100,
"currency": "NGN",
"authorization_code": "123456",
"expires_at": "2025-01-19T10:30:00",
"created_at": "2025-01-12T10:30:00",
"updated_at": "2025-01-12T10:30:00",
"card_last_4": "2346",
"card_brand": "MASTERCARD",
"order_reference": "ORD-001",
"merchant_reference": "MR-001",
"customer_email": "customer@example.com",
"customer_name": "John Doe"
}