API ReferenceOrganisation Management
Get organisation transactions (Admin only)
Retrieve all transactions for a specific organisation with pagination. Admin access required.
GET
/v1/organisation-management/{id}/transactionsAuthorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
id*string
Organisation ID
Query Parameters
page?number
limit?number
reference?string
type?string
Value in
- "DEPOSIT"
- "WITHDRAWAL"
- "PAYMENT"
- "REFUND"
- "REVERSAL"
- "FEE"
- "TRANSFER"
status?string
Value in
- "PENDING"
- "PROCESSING"
- "SUCCESS"
- "FAILED"
- "ABANDONED"
- "REVERSED"
- "EXPIRED"
gateway?string
customerEmail?string
startDate?string
endDate?string
minAmount?number
maxAmount?number
Response Body
application/json
curl -X GET "https://example.com/v1/organisation-management/string/transactions"{ "success": true, "statusCode": 200, "message": "Request processed successfully", "timestamp": "2025-10-20T16:30:00.000Z", "path": "/v1/auth/register", "data": { "transactions": [ { "id": "txn_abc123", "reference": "TXN_1634567890123_ABC123", "type": "DEPOSIT", "status": "SUCCESS", "amount": 10000, "currency": "NGN", "fee": 150, "netAmount": 9850, "gateway": "paystack", "gatewayRef": "1234567890", "channel": "card", "customerEmail": "customer@example.com", "customerName": "John Doe", "description": "Wallet funding", "metadata": { "source": "web" }, "initiatedAt": "2025-10-20T12:00:00.000Z", "completedAt": "2025-10-20T12:05:00.000Z", "failedAt": "2025-10-20T12:05:00.000Z", "createdAt": "2025-10-20T12:00:00.000Z", "updatedAt": "2025-10-20T12:05:00.000Z" } ], "total": 50, "page": 1, "limit": 10, "totalPages": 5, "stats": { "totalCount": 120, "totalAmount": 5000000, "manualCount": 15, "automatedCount": 105 } }}Admin platform analytics (Admin only)
Comprehensive real-time analytics across all platform dimensions: users, organisations, KYC, verifications, transactions, wallets, and API keys. Includes today / this-week / this-month growth breakdowns and aggregate financial volumes.
Get organisation verifications (Admin only)
Retrieve all verifications for a specific organisation with pagination. Admin access required.