Account
Invoice View
https://api.linode.com/v4/account/invoices/{invoiceId}
Returns a single Invoice object.
Path Parameters
The ID of the Invoice.
Request Samples
- Shell
- CLI
curl -H "Authorization: Bearer $TOKEN" \
https://api.linode.com/v4/account/invoices/123
Response Samples
- 200
- default
{
"id": 1234,
"date": "2018-01-01T00:01:01",
"label": "Invoice",
"subtotal": 120.25,
"tax": 12.25,
"tax_summary": [
{
"tax": 12.25,
"name": "PA STATE TAX"
}
],
"total": 132.5
}
Responses
200: An Invoice object
The Invoice's unique ID.
When this Invoice was generated.
The Invoice's display label.
The amount of the Invoice before taxes in US Dollars.
The amount of tax levied on the Invoice in US Dollars.
The amount of tax broken down into subtotals by source.
The amount of tax subtotal attributable to this source.
The source of this tax subtotal.
The amount of the Invoice after taxes in US Dollars.
default: Error
What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.
The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.