Stripe Atlas
list_invoices
This tool will fetch a list of Invoices from Stripe. It takes two arguments: - customer (str, optional): The ID of the customer to list invoices for. - limit (int, optional): The number of invoices to return.
Remote stripe
Remote (network-hosted)
Other tools also called list_invoices?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"maximum": 100,
"minimum": 1,
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10."
},
"customer": {
"type": "string",
"description": "The ID of the customer to list invoices for."
}
}
}