---
page_title: Get Execution Info 
product: Juspay Billing
page_source: https://juspay.io/in/docs/juspay-billing/docs/billing/get-execution-info
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/juspay-billing/llms.txt
---


# Get Billing Execution info



Get the entire billing execution data against an billing execution id.

## Sample Code Snippets:
### Request:

#### Request Code Snippet:

```request
curl --location 'https://api.juspay.in/billing/execution-info/' \
--header 'x-merchantid: azharamin' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic TEST' \
--data '{
    "command": "get", 
    "billing_execution_info_id": "DUMMY_ID"
}'
```

### Response:

#### 200:
```plaintext
{
    "source_object_id": "933",
    "status": "ACTIVE",
    "plan_info": {
        "plan_rule_value": 4,
        "plan_type": "PRE_DEBIT",
        "plan_model": "ADD_ON",
        "is_rule_value_variable": true,
        "is_rule_type_variable": true,
        "is_plan_amount_variable": false,
        "max_amount": 100,
        "plan_status": "ACTIVE",
        "plan_amount": 7,
        "plan_created_at": "2026-02-06 12:06:45",
        "plan_currency": "INR",
        "plan_interval": "WEEKLY",
        "attached_add_ons": [
            {
                "status": "ACTIVE",
                "pricing_tier": {
                    "unit_amount": 0,
                    "up_to": "INFINITY",
                    "flat_fee": 4
                },
                "name": "addOn4",
                "metric_id": 4,
                "metric_start": "2026-04-09 07:01:08",
                "description": "sample add on metric",
                "quantity": 2
            }
        ],
        "plan_rule_type": "AFTER",
        "plan_name": "test plan for local testing",
        "plan_description": "Add on plan model + fixed amt",
        "plan_updated_at": "2026-02-06 12:06:45",
        "plan_id": "test07",
        "plan_action_on_failure": "REVOKE"
    },
    "billing_execution_info_id": "12b7ffb1173446c0bdb1d91b42513298",
    "source": "MANDATE",
    "message": "Billing execution info retrieved successfully",
    "merchant_id": "azharamin",
    "amount": 1,
    "success": true,
    "mandate": {
        "gateway": "BILLDESK",
        "mandate_id": "9BExam13rQwi8fFcTnQBJ9",
        "status": "ACTIVE",
        "frequency": "ASPRESENTED",
        "last_updated": "2026-04-09T06:58:14Z",
        "start_date": "1775717830",
        "max_amount": 100,
        "block_fund": false,
        "currency": "INR",
        "payment_info": {
            "payment_method": "UPI_COLLECT",
            "upi": {
                "payer_vpa": "\"billdesk@upi\""
            },
            "payment_method_type": "UPI"
        },
        "last_activated_at": "2026-04-09T06:58:14Z",
        "rule_value": 1,
        "amount_rule": "VARIABLE",
        "rule_type": "AFTER",
        "gateway_reference_id": "dfe",
        "revokable_by_customer": true,
        "order_id": "1775717809",
        "end_date": "1901948230",
        "mandate_debit_token": "tkn_fc5e2117eaed47bcb60df098a2e8f7db",
        "next_execution_info": {
            "next_execution_date": "2026-04-16T06:58:14.446279Z",
            "next_execution_order_id": "kmHnZx1EBE7ZmnZc"
        },
        "customer_id": "cth_rPj21roNSjEbumSy",
        "activated_at": "2026-04-09T06:58:14Z",
        "mandate_token": "74333fb0bd7f471e973d3c1ad586ef82",
        "mandate_type": "EMANDATE"
    },
    "customer_id": "cth_rPj21roNSjEbumSy"
}
```



---

## See Also

- [Plan Change ](https://juspay.io/in/docs/juspay-billing/docs/billing/plan-change)
- [Free tier provisioning](https://juspay.io/in/docs/juspay-billing/docs/billing/free-tier-provisioning)
