The cancel_subscription() method is used to stop/cancel the subscription by passing the below parameter:
Parameters
Attribute | Data Type | Mandatory | Description |
---|---|---|---|
merchant_subscription_id | Str | Yes | Id generated by the merchant |
Example:
from phonepe.sdk.pg.subscription.v2.subscription_client import SubscriptionClient
client_id = "<client_id>"
client_secret = "<client_secret>"
client_version = 1 # insert your client version here
env = Env.SANDBOX # change to Env.PRODUCTION when you go live
merchant_subscription_id = "<MERCHANT_SUBSCRIPTION_ID>"
subscription_client = SubscriptionClient.get_instance(client_id,client_secret,client_version,env)
subscription_client.cancel_subscription(merchant_subscription_id)
If the call is successful, the response will be None, i.e the function doesn’t return anything and the subscription for the specified ID will be canceled/stopped.
Otherwise, an exception will be raised, indicating the reason for the failure.