Director API - Calls

Service name: <MachineName>-Director (one per machine).

General

General machine operation and diagnostic endpoints.

Health [CALL]

Health

Checks whether the Director is alive and responsive.

No params.



Result

Result

BOOLEAN

Always `true` when the Daemon responds.

Example - Health check

Request (you send)

JSON
{
  "Type": "Call",
  "Target": "<MachineName>-Director",
  "RespondTo": "<Service>",
  "Method": "Health",
  "ID": "<ID>"
}
JSON
{}

Response (you receive)

JSON
{
  "Type": "CallResult",
  "Target": "<Service>",
  "ExecutedOn": "<MachineName>-Director",
  "Method": "Health",
  "ID": "<ID>"
}
JSON
{
  "Result": true
}