Daemons

Email install command to current user

Session-only, and IsUser says so at the extractor rather than in the body. "The current user" has no answer for an automation identity: a user API key carries user_id but no address, so this endpoint could never serve one. An API key that wants the command reads it directly from GET /api/v1/daemons/{id}/install-command.

post/api/v1/daemons/email-install-command

Request body

install_commandstring required

The install command to send, exactly as shown in the UI.

os'linux' | 'macos' | 'windows' | 'freebsd' required

Operating system the install command was generated for.

Response

Email sent

dataTupleUnit

No payload. Present only so the envelope keeps its shape.

errorstring nullable

Human-readable failure message. Omitted on success.

successboolean required

true when the request succeeded. false responses carry error instead of data.

Example response

{
  "meta": {
    "api_version": 1,
    "server_version": "0.17.13"
  }
}

Changes