cldkctl_billing_history
Retrieve project billing history within a specified date range using the MCP cldkctl Server. Input project ID, start, and end dates to access detailed billing data.
Instructions
Call the cldkctl_billing_history endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | End date (YYYY-MM-DD) | |
project_id | Yes | ID of the project | |
start | Yes | Start date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
},
"start": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"project_id",
"start",
"end"
],
"type": "object"
}