list_usage_records
Retrieve billing usage records from CloudStack MCP Server by specifying a start date, end date, and optional usage type for accurate cost tracking and analysis.
Instructions
List usage records for billing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enddate | Yes | End date (YYYY-MM-DD) | |
startdate | Yes | Start date (YYYY-MM-DD) | |
type | No | Usage type |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"enddate": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"startdate": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"type": {
"description": "Usage type",
"type": "number"
}
},
"required": [
"startdate",
"enddate"
],
"type": "object"
}