Subscription Notify

The notify() method is used to send the subscription notification, by passing the below parameters in the builder: PgPaymentRequest.build_subscription_notify_request()

Parameters

AttributeData TypeMandatoryDescriptionDefault Value
merchant_order_idStrYes
Unique order ID generated by merchant
merchant_subscription_idStrYes
Unique subscription ID generated by merchant
amountIntYes
Amount of order in Paisa
1. FULL auth – first debit amount
2 . PENNY auth – 200
order_expire_atIntNoOrder expireAt epoch after which order will auto fail if not terminal48 hours
redemption_retry_strategyRedemptionRetryStrategyNoRedemption retry strategy in case attempts fail
1. STANDARD – Internal Retries
2. CUSTOM – Merchant needs to retry

STANDARD
auto_debitBoolNoAuto debit redemption 24 hours after notify success
Can’t be true for CUSTOM redemptionRetryStrategy
false
meta_infoMetaInfoNoUser defines fields propagated in status check & callbacks

Example:

import uuid
from phonepe.sdk.pg.common.models.request.pg_payment_request import PgPaymentRequest
from phonepe.sdk.pg.subscription.v2.subscription_client import SubscriptionClient
from phonepe.sdk.pg.subscription.v2.models.request.redemption_retry_strategy import RedemptionRetryStrategy
 
client_id = "<cliend_id>"
client_secret = "<client_secret>"
client_version = 1
env = Env.SANDBOX
 
subscription_client = SubscriptionClient.get_instance(client_id, client_secret, client_version, env)
 
merchant_order_id = str(uuid.uuid4())
merchant_subscription_id = "<MERCHANT_SUBSCRIPTION_ID>"
redemption_retry_strategy = RedemptionRetryStrategy.STANDARD
auto_debit = False
amount = 100
 
notify_request = PgPaymentRequest.build_subscription_notify_request(
    merchant_order_id=merchant_order_id,
    merchant_subscription_id=merchant_subscription_id,
    auto_debit=auto_debit,
    redemption_retry_strategy=redemption_retry_strategy,
    amount=amount
)
 
notify_response = subscription_client.notify(notify_request)
state = notify_response.state            #state will be NOTIFICATION_IN_PROGRESS

Returns:

The function returns a PgPaymentResponse object with the following properties:

PgPaymentResponse Properties:

Here is the response property table for the given model:

PropertyTypeDescription
order_idStringUnique order ID generated by PhonePe
stateStringState of the order notified. It will be NOTIFICATION_IN_PROGRESS
expire_atLongOrder expire date in epoch