Transaction Logs
Retrieve paginated credit transaction logs for the authenticated organization with advanced filtering, sorting, and pagination capabilities.
Features
- Date Range Filtering: Filter transactions using start and end dates in DD-MM-YYYY format
- Transaction Type Filtering: Filter by specific transaction types (credit, debit, refund, purchase, deduction)
- High Performance: Sub-50ms response time for base queries
- Conditional Payload Loading: Optionally include request/response payload data
- Flexible Pagination: Up to 500 records per page
Use Cases
- View Recent Activity: Monitor your latest credit transactions
- Generate Reports: Create billing and usage reports for specific date ranges
- Audit API Usage: Track which APIs consumed credits and when
- Credit Analysis: Analyze credit consumption patterns across your organization
include_input=true or
include_output=true to retrieve payload data when needed.Transaction Types
- credit: Credits added to account
- debit: Credits consumed by API calls
- refund: Credits refunded to account
- purchase: Credits purchased
- deduction: Manual credit deduction
Authorizations
API key issued by KonnectNXT. Pass as Authorization: Bearer <your_api_key>.
Query Parameters
Filter transactions from this date (inclusive). Format: DD-MM-YYYY
^\d{2}-\d{2}-\d{4}$"01-01-2024"
Filter transactions until this date (inclusive). Format: DD-MM-YYYY
^\d{2}-\d{2}-\d{4}$"31-12-2024"
Filter by specific transaction type
credit, debit, refund, purchase, deduction "debit"
Page number for pagination (1-indexed)
x >= 11
Number of records per page
1 <= x <= 500100
Include request payload data in response
false
Include response payload data in response
false
Response
Successfully retrieved transaction logs
Response status indicator
success "success"
HTTP status code
200 200
Credits consumed by this API call (always 0.0 for read-only operations)
0
Organization's remaining credit balance
1000

