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

Initiate Transfer

POST
/api/v0/payout-transaction
📌
Use this API to initiate an amount transfer from your EnKash payout account to a registered beneficiary. This allows you to seamlessly process payouts and disburse funds to your customers, vendors, or partners.
PayoutTransactionCreateRequest

PayoutTransactionCreateResponse

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": "HkKZfu8K7vljI3a7FZuko6mzmh0NEuH0mcwK5hGbYzU4Fi6Uv/raO4tdg3Blxlpz6KWUmUET9A9fJFe/mrHnFlK3PZtv0sDELcUbyaZ1R/fniYUINbfzW0dnPooWsyKmaf5aj8ja9lEp8jt1NhbPWs5FLjJilltzZIzm8UyxB/eG44FI7wbEkEywYSLYN6DeWGT6q+axiHcmh3cWqfIjt48ZfLjj35z9nkmbH8a9eEEA1U/avn/MtaIBFuBUuYD+"
}

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' \
--header 'clientId: CEKFOWV7UQ' \
--header 'User-Agent;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "request": "HkKZfu8K7vljI3a7FZuko6mzmh0NEuH0mcwK5hGbYzU4Fi6Uv/raO4tdg3Blxlpz6KWUmUET9A9fJFe/mrHnFlK3PZtv0sDELcUbyaZ1R/fniYUINbfzW0dnPooWsyKmaf5aj8ja9lEp8jt1NhbPWs5FLjJilltzZIzm8UyxB/eG44FI7wbEkEywYSLYN6DeWGT6q+axiHcmh3cWqfIjt48ZfLjj35z9nkmbH8a9eEEA1U/avn/MtaIBFuBUuYD+"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": "string"
}
Modified at 2025-07-08 18:46:00
Previous
Transfer
Next
Initiate Batch Transfer
Built with