list_invoices
Retrieve and manage your Vultr cloud service billing invoices with pagination support for organized financial tracking.
Instructions
List all invoices.
Args: per_page: Number of items per page (default: 25)
Returns: List of invoices with pagination info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
}
},
"type": "object"
}