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
📌
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

Response will be list of PayoutTransactionSearchResponse object
PayoutTransactionSearchResponse

Request

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

Body Params application/json

Example
{
    "request": "string"
}

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

Responses

🟢200OK
application/json
Body

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