The Payout Statement API allows you to fetch detailed payout transaction records for a specified period. Use this API to track payouts, reconcile transactions, generate reports, and monitor the status of your payouts in real time.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Request Params:
| Name | Type | Description | Mandatory(Yyes)/ Optional(O) |
|---|---|---|---|
| clientId | String | Client Id is provided in wowpe Dashboard. | Y |
| secretKey | String | secretKey is provided in wowpe Dashboard. | Y |
| fromDate | String | From Date (YYYY/MM/DD)- Specify the start date from which payout records should be fetched. | Y |
| toDate | String | To Date (YYYY/MM/DD) - Specify the end date up to which payout records should be fetched | Y |
| transactionType | String | Transaction Type should be Transaction Credit or Transaction Debit | O |
| crDrType | String | This value should be Debit or Credit | O |
| orderID | String | Client Order Id which is used while initiating Payout transaction. | O |
| pagenumber | Number | Specify the page number of the results to retrieve from the complete set of payout records. | Y |
| pageSize | Number | Specify the number of payout records to be returned per page. | Y |
A 400 Bad Request error indicates that the server cannot process the request due to a client error. This may be due to malformed request syntax, invalid request parameters, or deceptive request routing. Please refer to the error message for more details.
Example:
{"type":"https://tools.ietf.org/html/rfc7231#section-6.5.1","title":"One or more validation errors occurred.","status":400,"traceId":"00-57d6d771f49b4d660e32b910a37fbc45-c8915d1c3717712c-00","errors":{"fromDate":["Invalid date format. Use YYYY/MM/DD."]}}
Sample Request:
{
"clientId": "40c86a1c-XXXXXXXXXXXXXXXXXXXXXXXXX",
"secretKey": "e91650d0-XXXXXXXXXXXXXXXXXXX",
"fromDate": "2026/03/01",
"toDate": "2026/06/30",
"pageNumber": 1,
"pageSize": 10,
"transactionType": "Transaction Debit",
"crDrType": "Debit",
"orderID": "05645421"
}