Dashboard
All dashboard endpoints
Authorizations
PRIVATE-TOKENstringRequired
Responses
200
OK
application/json
idinteger · integerRead-onlyRequired
The ID of the service
servicestringRead-onlyRequired
The name of the service
amountinteger · integerRead-onlyRequired
The amount of service the customer has
403
Invalid credentials
500
Internal Server Error
application/json
get/v3/dashboard/service
GET /v3/dashboard/service HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"service": "text",
"amount": 1
}
]Authorizations
PRIVATE-TOKENstringRequired
Responses
200
OK
application/json
statusinteger · integerRead-onlyRequired
The status of all the systems
- 1: All systems operational
- 2: Multiple systems have performance issues
- 3: Multiple systems are offline
- 4: All systems are offline
403
Invalid credentials
500
Internal Server Error
application/json
get/v3/dashboard/status
GET /v3/dashboard/status HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
{
"status": 1,
"groups": [
{
"name": "text",
"status": 1,
"components": [
{
"name": "text",
"status": 1
}
]
}
]
}
]Last updated
Was this helpful?