Test API
Reconciliation
Simulate reconciliation transfers in the test environment. No real funds are transferred. Use your test API key with /api/test/reconciliation endpoints.
Important
Send requests to
/api/test/reconciliation with your test API key. Request and response shapes match the live endpoints.Create Reconciliation
POST
/api/test/reconciliationAPI Key
Creates a simulated reconciliation transfer for integration testing.
Request Body
Same request body as the live create reconciliation endpoint.
{
"orderId": "RECON-12345",
"amount": 500.00,
"currency": "USD",
"beneficiaryId": "BEN-123"
}Get Reconciliation Status
GET
/api/test/reconciliation/:id/statusAPI Key
Returns the simulated status of a test reconciliation transfer.
Path Parameters
Same as live: id is the reconciliation ID or order ID from your create reconciliation response.