- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
List invoices
GET
https://api.vpsbg.eu/v1/invoices
Invoices
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
integerÂ
optional
Header Params
Accept
stringÂ
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vpsbg.eu/v1/invoices?page' \
--header 'Accept;'
Responses
🟢200List of all invoices.
application/json
Body
data
array [object {7}]Â
required
id
integerÂ
required
Example:
8552
invoice_number
stringÂ
required
Example:
0000007513
created_at
stringÂ
required
Example:
2024-09-24T21:00:00.000000Z
amount
numberÂ
required
Example:
15
amount_with_vat
numberÂ
required
Example:
18
type
stringÂ
required
Example:
proform
order_ids
array[integer]
required
links
objectÂ
required
first
stringÂ
required
last
stringÂ
required
prev
nullÂ
required
next
nullÂ
required
meta
objectÂ
required
current_page
integerÂ
required
from
integerÂ
required
last_page
integerÂ
required
links
array [object {3}]Â
required
path
stringÂ
required
per_page
integerÂ
required
to
integerÂ
required
total
integerÂ
required
Example
{
"data": [
{
"id": 8431,
"invoice_number": "0000007398",
"created_at": "2024-08-27T21:00:00.000000Z",
"amount": 90,
"amount_with_vat": 108,
"type": "proform",
"order_ids": [
7398
]
},
{
"id": 8425,
"invoice_number": "0000001594",
"created_at": "2024-08-04T21:00:00.000000Z",
"amount": 0,
"amount_with_vat": 0,
"type": "original",
"order_ids": [
7390
]
}
],
"links": {
"first": "https://api.vpsbg.eu/v1/invoices?page=1",
"last": "https://api.vpsbg.eu/v1/invoices?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://api.vpsbg.eu/v1/invoices?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://api.vpsbg.eu/v1/invoices",
"per_page": 30,
"to": 26,
"total": 26
}
}
🔴500Server Error
Modified at 2024-10-02 12:10:18