get_twilio_usage
Retrieve Twilio usage statistics by specifying start and end dates and a result limit. Access detailed usage data for analysis and optimization.
Instructions
Get Twilio usage statistics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date (ISO format) | |
limit | No | Max number of results | |
start_date | No | Start date (ISO format) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date (ISO format)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Max number of results",
"type": "number"
},
"start_date": {
"description": "Start date (ISO format)",
"type": "string"
}
},
"required": [],
"type": "object"
}