Skip to main content

billing.getInvoices

get/v1/billing/invoices

billing.getInvoices

Responses

200No description
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"number": {
"type": "string"
},
"amount": {
"type": "string"
},
"currency": {
"type": "string"
},
"status": {
"type": "string"
},
"date": {
"type": "string"
},
"pdf_url": {
"type": "string"
}
},
"required": [
"id",
"number",
"amount",
"currency",
"status",
"date",
"pdf_url"
]
}
}
},
"required": [
"success",
"data"
]
}