POST
/
payout
/
v1
/
authorize
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1/authorize \
  --header 'X-Client-Id: <x-client-id>' \
  --header 'X-Client-Secret: <x-client-secret>'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Token is valid"
}

Headers

X-Cf-Signature
string

Signature to be sent if IP is not whitelisted

X-Client-Secret
string
required

Client Secret key

X-Client-Id
string
required

Client ID

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Token is valid"

Was this page helpful?