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

Search Payout Transfers

POST
/api/v0/payout-transaction/search
Payout Transaction Apis
📌
Use this API to search for payout transfers that you have initiated, by providing the appropriate request parameters. This API supports multiple use cases, including:
Check the status of a specific transaction by searching with transactionId
Get the status of all transactions in a batch by searching with batchTransactionId
Retrieve transactions initiated within a specific date range by using createdOnFrom and createdOnTo
This helps you efficiently track, reconcile, and audit your payout activity.
PayoutTransactionSearchRequest
batchTransactionId
string 
optional
transactionId
string 
optional
bankAccountNumber
string 
optional
ifsc
string 
optional
vpaHandle
string 
optional
beneficiaryEmail
string 
optional
beneficiaryPhone
string 
optional
beneficiaryAddress
string 
optional
beneficiaryCity
string 
optional
beneficiaryState
string 
optional
beneficiaryPincode
string 
optional
beneficiaryName
string 
optional
beneficiaryId
string 
optional
amount
number 
optional
totalAmount
number 
optional
transactionMode
enum<string> 
required
Allowed values:
PAYOUTREFUND
remarks
string 
optional
sourceAccountId
string 
optional
createdOnFrom
string <date-time>
optional
createdOnTo
string <date-time>
optional
companyId
string 
optional
direction
enum<string> 
optional
Allowed values:
ASCDESC
Default:
DESC
orderBy
string 
optional
Default:
createdOn
offset
integer 
optional
>= 0
Default:
0
limit
integer 
optional
>= 0<= 100
Default:
100
Response will be list of PayoutTransactionSearchResponse object
PayoutTransactionSearchResponse
batchTransactionId
string 
optional
transactionId
string 
optional
bankAccountNumber
string 
optional
ifsc
string 
optional
vpaHandle
string 
optional
beneficiaryEmail
string 
optional
beneficiaryPhone
string 
optional
beneficiaryAddress
string 
optional
beneficiaryCity
string 
optional
beneficiaryState
string 
optional
beneficiaryPincode
string 
optional
beneficiaryName
string 
optional
beneficiaryId
string 
optional
amount
number 
optional
totalAmount
number 
optional
transactionMode
enum<string> 
required
Allowed values:
PAYOUTREFUND
status
string 
required
utr
string 
optional
remarks
string 
optional
sourceAccountId
string 
optional
referenceNumber
string 
optional
reversalReferenceNumber
string 
optional
createdOn
string <date-time>
required

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
clientId
string 
required
Example:
CEKxxxxxxx
User-Agent
string 
required
Body Params application/json
request
string 
required
Encrypted request payload string
Example
{
    "request": "string"
}

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-transaction/search' \
--header 'clientId: CEKxxxxxxx' \
--header 'User-Agent;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "request": "string"
}'

Responses

🟢200OK
application/json
Body
response_code
integer <int32>
optional
response_message
string 
optional
payload
string 
optional
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": "string"
}
Modified at 2025-07-08 18:46:46
Previous
Initiate Batch Transfer
Next
Retrieve Account Balance
Built with