POST
/
payout
/
v1
/
lend
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1/lend \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "beneId": "<string>",
  "loanId": "<string>",
  "amount": "<string>",
  "transferMode": "<string>",
  "serviceCharges": "[{\"key\":\"\", \"value\":\"\"}]",
  "beneDetails": {
    "bankAccount": "<string>",
    "ifsc": "<string>",
    "name": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "vpa": "<string>",
    "address1": "<string>"
  }
}'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Transfer completed successfully",
  "data": {
    "referenceId": "54109311",
    "utr": "1681409852019854",
    "acknowledged": 1
  }
}

Please use this Authorization token in headers to call any payout API (Refresh this page if the token is expired)

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Body

application/json
beneId
string
required

It is the unique ID to identify the beneficiary. Only alphanumeric characters are allowed.

loanId
string
required

It is the unique ID to identify the loan. Only alphanumeric characters are allowed.

amount
string
required

It is the loan amount. It should be equal to or greater than 1.00.

transferMode
string
required

It is the mode of transfer. Allowed values are: banktransfer, neft, imps, rtgs, upi, paytm, and amazonpay. The default transferMode is banktransfer.

serviceCharges
string
default:[{"key":"", "value":""}]

It is the service charges that need to be disbursed to different parties.

beneDetails
object

It is the details of the beneficiary.

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Transfer completed successfully"

data
object

Was this page helpful?