Enkash APIs
HomePayment GatewayPayoutsCreate Account
HomePayment GatewayPayoutsCreate Account
Login
  1. Payout Account Apis
  • Payouts Overview
  • Payouts Sign Up
  • Payout Methods
  • Payout API Response Codes
  • Payouts Integration Steps
  • Encrypting and Decrypting Payload
  • Payouts Status Codes
  • Get Authentication Token
    • Get Authentication Token
      POST
  • Beneficiary Apis
    • Create Beneficiary
      POST
    • Search Beneficiary
      POST
    • Delete Beneficiary
      DELETE
  • Transfer Apis
    • Create Payout
      POST
    • Search Payouts
      POST
    • Create Batch Payout
      POST
  • Payout Account Apis
    • Get Balance
      GET
    • Get Source Bank Account Details
      GET
    • Add Source Bank Account
      POST
    • Fetch Bank Statement
      POST
  • Webhook Data Apis
    • Get Webhook Data
      GET
    • Create Webhook Data
      POST
  1. Payout Account Apis

Fetch Bank Statement

POST
/api/v0/payout-account/statement

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
fundSourceId
string 
required
debitAccountNumber
string 
required
fromDate
string <date-time>
required
toDate
string <date-time>
required
Example
{
  "fundSourceId": "string",
  "debitAccountNumber": "string",
  "fromDate": "2019-08-24T14:15:22Z",
  "toDate": "2019-08-24T14:15:22Z"
}

Request 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
response_code
string 
required
response_message
string 
required
requestId
string 
required
data
array[object (StatementResponseModel) {9}] 
required
transactionId
string 
optional
transactionDate
string <date-time>
optional
valueDate
string <date-time>
optional
transactionType
string 
required
remarks
string 
optional
transactionReferenceNumber
string 
required
transactionMode
string 
optional
transactionAmount
integer 
required
runningBalance
number 
required
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-04-07 07:12:15
Previous
Add Source Bank Account
Next
Get Webhook Data
Built with