Fetch All Controlled Executions
Use this API to fetch all controlled payment executions 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 executions.
Cashfree-generated identifier for the controlled execution.
Cashfree subscription payment order ID.
Cashfree subscription payment reference number.
Cashfree subscription reference number.
Cashfree subscription payment transaction ID.
The timestamp when the controlled execution was attempted. Timestamps are in IST.
"2025-06-01T22:14:59+05:30"
The timestamp when the controlled execution was completed. Timestamps are in IST.
"2025-06-01T22:14:59+05:30"
The unique merchant-provided identifier for the controlled execution.
The timestamp when the controlled execution was initiated. Timestamps are in IST.
"2025-06-01T22:14:58+05:30"
Status of the controlled execution.
Details of the failure associated with a controlled notification or execution attempt.
Amount associated with the controlled execution.
Base Payment ID associated with the controlled execution.
Payment remarks associated with the controlled execution.
Current status of the parent payment entity.
Subscription ID associated with the controlled execution.
[
{
"cf_execution_id": "3333",
"cf_order_id": "123456",
"cf_payment_id": "123456",
"cf_subscription_id": "7891011",
"cf_txn_id": "123456",
"execution_attempted_time": "2025-06-01T22:14:59+05:30",
"execution_completed_time": "2025-06-01T22:15:59+05:30",
"execution_id": "execution-001",
"execution_initiated_time": "2025-06-01T22:14:58+05:30",
"execution_status": "SUCCESS",
"failure_details": {
"failure_reason": "",
"failure_error_code": "",
"failure_sub_error_code": ""
},
"payment_amount": 1,
"payment_id": "test-payment-id",
"payment_remarks": "",
"payment_status": "SUCCESS",
"subscription_id": "test-subscription-id"
},
{
"cf_execution_id": "3334",
"cf_order_id": "123457",
"cf_payment_id": "123457",
"cf_subscription_id": "7891011",
"cf_txn_id": "123457",
"execution_attempted_time": "2025-06-02T22:14:59+05:30",
"execution_completed_time": "2025-06-02T22:15:59+05:30",
"execution_id": "execution-002",
"execution_initiated_time": "2025-06-02T22:14:58+05:30",
"execution_status": "FAILED",
"failure_details": {
"failure_reason": "Insufficient balance",
"failure_error_code": "INSUFFICIENT_FUNDS",
"failure_sub_error_code": "BALANCE_LOW"
},
"payment_amount": 1,
"payment_id": "test-payment-id",
"payment_remarks": "retry attempt",
"payment_status": "SUCCESS",
"subscription_id": "test-subscription-id"
}
]