Enkash Developer Portal
Home
Home
Login
  1. Bank Details
  • Back to home
  • Payout APIs
  • Encryption & Decryption Guide
    • Generate Authentication Token
  • Beneficiary
    • Add Beneficiary
    • Search Beneficiary
    • Delete Beneficiary
  • Transfer
    • Initiate Transfer
    • Initiate Batch Transfer
    • Search Payout Transfers
  • Bank Details
    • Retrieve Account Balance
      GET
    • Retrieve Bank Account Details
      GET
    • Add Funds to EnKash
      POST
    • Fetch Statement
      POST
  • Webhook
    • Create Webhook Configuration
    • Retrieve Webhook Data
  1. Bank Details

Fetch Statement

POST
/api/v0/payout-account/statement
📌
Use this API to retrieve the statement for your EnKash account.
This allows you to view detailed transfer history, helping with reconciliation, audits, and financial reporting.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "fundSourceId": "string",
    "debitAccountNumber": "string",
    "fromDate": "2019-08-24T14:15:22Z",
    "toDate": "2019-08-24T14:15:22Z"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.your-api-server.com/api/v0/payout-account/statement' \
--header 'Content-Type: application/json' \
--data-raw '{
    "fundSourceId": "string",
    "debitAccountNumber": "string",
    "fromDate": "2019-08-24T14:15:22Z",
    "toDate": "2019-08-24T14:15:22Z"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": "string",
    "response_message": "string",
    "requestId": "string",
    "data": [
        {
            "transactionId": "string",
            "transactionDate": "2019-08-24T14:15:22Z",
            "valueDate": "2019-08-24T14:15:22Z",
            "transactionType": "string",
            "remarks": "string",
            "transactionReferenceNumber": "string",
            "transactionMode": "string",
            "transactionAmount": 0,
            "runningBalance": 0
        }
    ]
}
Modified at 2025-07-08 19:02:13
Previous
Add Funds to EnKash
Next
Create Webhook Configuration
Built with