GET
/
payout
/
v1.2
/
getTransferStatus
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1.2/getTransferStatus \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "status": "ERROR",
  "subCode": "403",
  "message": "APIs not enabled. Please fill out the [Support Form](https://merchant.cashfree.com/merchants/landing?env=prod&raise_issue=1)"
}

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Query Parameters

referenceId
string

Reference ID of the transaction. (Either referenceId or transferId is mandatory)

transferId
string

Transfer ID of the transaction.

Response

403
application/json
403
status
string
Example:

"ERROR"

subCode
string
Example:

"403"

message
string
Example:

"APIs not enabled. Please fill out the [Support Form](https://merchant.cashfree.com/merchants/landing?env=prod&raise_issue=1)"

Was this page helpful?