POST
/
api
/
v2
/
subscriptions
/
seamless
/
authorization
/
simulate
curl --request POST \
  --url https://sandbox.cashfree.com/api/v2/subscriptions/seamless/authorization/simulate \
  --header 'Content-Type: application/json' \
  --header 'X-Client-Id: <x-client-id>' \
  --header 'X-Client-Secret: <x-client-secret>' \
  --data '{
  "authId": 52250,
  "paymentStatus": "SUCCESS"
}'
{
"status": 200,
"message": "Update Authorization Successful",
"data": {
"authId": 53296
}
}

Headers

X-Client-Id
string
required

Client ID provided by Cashfree.

Example:

"asdf1234"

X-Client-Secret
string
required

Client Secret provided by Cashfree.

Example:

"qwer9876"

Body

application/json

Response

200
application/json

Successful update of authorization status.

The response is of type any.