Skip to content

Get Invoice Download Url

GET
/billing/invoices/{invoice_id}/download
curl --request GET \
--url https://api.mengi.cloud/billing/invoices/example/download

Get the download URL for a MoneyBird invoice.

invoice_id
required
Invoice Id
string

Successful Response

Media type application/json
InvoiceDownloadResponse
object
invoice_url
required
Invoice Url
string
Example generated
{
"invoice_url": "example"
}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}