PUT
/
api
/
v2
/
subscriptions
/
{subReferenceId}
/
recurring-amount
curl --request PUT \
  --url https://sandbox.cashfree.com/api/v2/subscriptions/{subReferenceId}/recurring-amount \
  --header 'Content-Type: application/json' \
  --header 'X-Client-Id: <x-client-id>' \
  --header 'X-Client-Secret: <x-client-secret>' \
  --data '{
  "amount": 4.99
}'
{
  "status": "OK",
  "message": "Recurring Amount Updated"
}

Headers

X-Client-Id
string
required

Client ID provided by Cashfree.

Example:

"144436e71d659a"

X-Client-Secret
string
required

Client Secret provided by Cashfree.

Example:

"TEST365fd19c"

Path Parameters

subReferenceId
integer
required

The reference ID of the subscription whose recurring amount is to be updated.

Example:

113598

Body

application/json

Response

200
application/json

Successful update of the recurring amount.

The response is of type any.