action illumidesk_projects_servers_stats_read { label: "Retrieve a server's statistics" provider: illumidesk method: GET path: "/v1/{namespace}/projects/{project}/servers/{server}/stats/{id}/" encoding: json input: { type: "object" properties: { id: { type: "string" } namespace: { type: "string" } project: { type: "string" } server: { type: "string" } } required: ["id", "namespace", "project", "server"] additionalProperties: false } output: { type: "object" additionalProperties: true } }