TYPE | Response
|
Category | Objects |
Description
Object: ServerListResponse
Properties
name |
type |
required |
default |
description |
server |
array <Server> |
yes |
|
A list of Server objects you requested |
listItemCount |
integer |
yes |
0 |
The total number of results in the list |
responseId |
string |
yes |
|
The response id |
clientRequestId |
string |
no |
|
The client request id if it was provided via the client-request-id header |
status |
string |
yes |
|
The status of the request |
message |
string |
yes |
|
The message |
Sample JSON
{
"responseId": "1_0336dd8b24739bd1063ef8e0e32f26d49edcea43",
"status": "ok",
"message": "The Server list is attached",
"listItemCount": 2,
"server": [
{
"identifier": "pleskdev",
"hostname": "pleskdev.yourdomainprovider.net",
"type": "plesk",
"status": "active",
"ips": [
{
"address": "10.0.0.1",
"version": 4
}
],
"availablePackages": [
"basic1",
"basic2"
],
"created": 1626259040,
"modified": 1626259045
},
{
"identifier": "plesktest",
"hostname": "plesktest.yourdomainprovider.net",
"type": "plesk",
"status": "active",
"ips": [
{
"address": "10.0.0.2",
"version": 4
}
],
"availablePackages": [
"basic1",
"basic2"
],
"created": 1626259040,
"modified": 1626259045
}
]
}