1.7 KiB
1.7 KiB
description
| description |
|---|
| Get billing increment updates and changes for telecom destinations |
Billing Updates Command
You are helping the user track billing increment changes in the telecommunications industry. Follow these steps:
-
Parse the user's query to identify:
- Year filter (e.g., 2024, 2025)
- Country filter (e.g., "CAMBODIA")
- Change type filter (increase, decrease, improved, mixed)
- Timeframe (recent days)
-
Determine the appropriate endpoint:
/updates/- for filtered historical updates (year, country, change_type)/updates/recent- for updates in last N days (1-365 days)/updates/summary- for aggregated statistics
-
Construct the API request to
https://destinations-api.telecomsxchange.comwith parameters:year- filter by yearcountry- filter by country namechange_type- filter by change typedays- for recent endpoint (default 30)limit- default to 100, max 500 for updates
-
Use the WebFetch tool to query the API
-
Present the results showing:
- Date of change
- Country
- Prefix/Network
- Old billing increment
- New billing increment
- Change type (improvement/deterioration)
-
Analyze the impact:
- Highlight favorable changes (better billing increments)
- Note unfavorable changes (worse billing increments)
- Summarize trends if multiple updates shown
-
Provide context about what billing changes mean:
- Improved: Better for cost control (e.g., 60/60 → 60/1)
- Deteriorated: Worse for cost control (e.g., 60/1 → 60/60)
Example queries to handle:
- "Show billing updates for 2025"
- "What changed in the last 30 days?"
- "Show billing improvements for Cambodia"
- "Get update summary"