- Introduction
- Auth
- Bolts
- Environments
- Git
- Domains
- Logs
- List Environments
- Create Environment
- Get Environment
- Update Environment
- Delete Environment
- Purge Environment Cache
- List Environment Cronjobs
- Get Environment Statistics
- Get Environment Available Settings
- Get Environment PHP Versions
- Get Environment Usage
- Get Environment SSH Accesses
- Create Environment SSH Access
- Remove Environment SSH Access
- List Environment Databases
- Toggle Environment Dev Mode
- Environment Install Wordpress
- Environment Optimize Wordpress
- Locations
- Databases
- Cronjobs
- SSH Keys
- Certificates
- Billing
- Profile
List Invoices
GET
https://api.servebolt.io/v1/invoices
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
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.servebolt.io/v1/invoices' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
🟢200OK
application/json
Body
data
array [object {3}]
required
id
string
required
type
string
required
attributes
object
required
links
object
required
first
string
required
last
string
required
prev
null
required
next
string
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": "string",
"type": "string",
"attributes": {
"customerId": "string",
"subscriptionId": "string",
"recurring": true,
"status": "string",
"dueDate": 0,
"priceType": "string",
"appliedCredits": [
{
"applied_amount": 0,
"applied_at": 0,
"cn_id": "string",
"cn_reason_code": "string",
"cn_create_reason_code": "string",
"cn_date": 0,
"cn_status": "string"
}
],
"subTotal": 0,
"tax": 0,
"total": 0,
"currencyCode": "string",
"date": 0,
"updatedAt": 0
}
}
],
"links": {
"first": "string",
"last": "string",
"prev": null,
"next": "string"
},
"meta": {
"current_page": 0,
"from": 0,
"last_page": 0,
"links": [
{
"url": "string",
"label": "string",
"active": true
}
],
"path": "string",
"per_page": 0,
"to": 0,
"total": 0
}
}
Modified at 2024-05-10 13:07:46