Fetch All Controlled Notifications
Use this API to fetch all controlled payment notifications for a subscription payment.
Authorizations
Client app ID. You can find your app id in the Merchant Dashboard.
Client secret key. You can find your secret key in the Merchant Dashboard.
Headers
API version to be used.
Request ID for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to Cashfree.
An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
Path Parameters
Provide the Payment ID using which the payment was created.
Response
Success response for fetching controlled payment notifications.
Cashfree-generated identifier for the controlled notification.
Cashfree subscription payment order ID.
Cashfree subscription payment reference number.
Cashfree subscription reference number.
Cashfree subscription payment transaction ID.
The timestamp when the controlled notification was attempted. Timestamps are in IST.
"2025-06-01T22:14:59+05:30"
The timestamp when the controlled notification was completed. Timestamps are in IST.
"2025-06-01T22:14:59+05:30"
Details of the failure associated with a controlled notification or execution attempt.
The unique merchant-provided identifier for the controlled notification.
The timestamp when the controlled notification was initiated. Timestamps are in IST.
"2025-06-01T22:14:58+05:30"
Status of the controlled payment notification.
Amount associated with the controlled payment notification.
Base Payment ID associated with the controlled payment notification.
Payment remarks for the controlled payment notification.
Current status of the parent payment entity.
Subscription ID associated with the controlled payment notification.
[
{
"cf_notification_id": "3333",
"cf_order_id": "123456",
"cf_payment_id": "123456",
"cf_subscription_id": "7891011",
"cf_txn_id": "123456",
"notification_attempted_time": "2025-06-01T22:14:59+05:30",
"notification_completed_time": "2025-06-01T22:15:59+05:30",
"notification_failure_details": {
"failure_reason": "",
"failure_error_code": "",
"failure_sub_error_code": ""
},
"notification_id": "notification-001",
"notification_initiated_time": "2025-06-01T22:14:58+05:30",
"notification_status": "SUCCESS",
"payment_amount": 1,
"payment_id": "test-payment-id",
"payment_remarks": "monthly charge",
"payment_status": "INITIALIZED",
"subscription_id": "test-subscription-id"
},
{
"cf_notification_id": "3334",
"cf_order_id": "123457",
"cf_payment_id": "123457",
"cf_subscription_id": "7891011",
"cf_txn_id": "123457",
"notification_attempted_time": "2025-06-02T22:14:59+05:30",
"notification_completed_time": "2025-06-02T22:15:59+05:30",
"notification_failure_details": {
"failure_reason": "Customer declined the payment notification",
"failure_error_code": "NOTIFICATION_DECLINED",
"failure_sub_error_code": "CUSTOMER_DECLINED"
},
"notification_id": "notification-002",
"notification_initiated_time": "2025-06-02T22:14:58+05:30",
"notification_status": "FAILED",
"payment_amount": 1,
"payment_id": "test-payment-id",
"payment_remarks": "monthly charge retry",
"payment_status": "INITIALIZED",
"subscription_id": "test-subscription-id"
}
]