list_activities
Retrieve customer revenue activities including new subscriptions, upgrades, downgrades, and churn events from ChartMogul data. Filter by date range and activity type to analyze MRR movements.
Instructions
[ChartMogul API] List customer activities across all customers (revenue movements: new subscriptions, upgrades, downgrades, churn). LIMIT WARNING: Default limit 20. Discourage requesting more than 20 items to avoid excessive token usage. Returns activity objects with: id (integer), date (string: ISO 8601 datetime), activity_type (string), description (string), activity_mrr_movement (INTEGER CENTS: change amount), activity_mrr (INTEGER CENTS: total MRR after change), activity_arr (INTEGER CENTS: total ARR), subscription_external_id (string), plan_external_id (string), customer_name (string), customer_uuid (string), customer_external_id (string), billing_connector_type (string). CRITICAL: All monetary values are INTEGER CENTS - divide by 100. Example: activity_mrr_movement=5000 means $50.00 increase, activity_mrr=15000 means $150.00 total. FILTERS: start_date (ISO 8601 datetime), end_date (ISO 8601 datetime), type (string: "new_biz", "reactivation", "expansion", "contraction", "churn"), order (string: "-date" for descending, "date" for ascending). Response includes cursor/has_more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_date | No | ||
| end_date | No | ||
| type | No | ||
| order | No | ||
| limit | No |