get_bill_detail
Retrieve detailed billing information for a specific month on Sakura Cloud. Input the year and month to generate accurate and structured billing data for your infrastructure.
Instructions
Get detailed billing information for a specific month
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | Yes | The month (MM) of the billing period | |
year | Yes | The year (YYYY) of the billing period |
Input Schema (JSON Schema)
{
"properties": {
"month": {
"description": "The month (MM) of the billing period",
"type": "string"
},
"year": {
"description": "The year (YYYY) of the billing period",
"type": "string"
}
},
"required": [
"year",
"month"
],
"type": "object"
}