POST
/
payout
/
v1
/
deactivateCashgram
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1/deactivateCashgram \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "cashgramId": "<string>"
}'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Cashgram with id - JOHaN10 successfully deactivated!"
}

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Body

application/json
cashgramId
string
required

ID of the Cashgram to be deactivated. Alphanumeric and underscore (_) allowed (35 character limit)

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Cashgram with id - JOHaN10 successfully deactivated!"