Get all daemons
Returns all daemons accessible to the user.
Supports pagination via limit and offset query parameters,
and ordering via group_by, order_by, and order_direction.
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Query Parameters
Filter by network ID
uuidPrimary ordering field (used for grouping). Always sorts ASC to keep groups together.
Secondary ordering field (sorting within groups or standalone sort).
Direction for order_by field (group_by always uses ASC).
Maximum number of results to return (1-1000, default: 50). Use 0 for no limit.
int320 <= value <= 1000Number of results to skip. Default: 0.
int320 <= valueResponse Body
application/json
curl -X GET "https://loading/api/v1/daemons"{
"data": [
{
"host_id": "eb4e20fc-2b4a-4d0c-811f-48abcf12b89b",
"mode": "server_poll",
"name": "string",
"network_id": "d6797cf4-42b9-4cad-8591-9dd91c3f0fc3",
"tags": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"url": "string",
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"api_key_id": "b0dd218e-3bcf-4bdb-a1e3-0689d60a8afd",
"is_unreachable": true,
"last_seen": "2019-08-24T14:15:22Z",
"standby": true,
"standby_cleared_at": "2019-08-24T14:15:22Z",
"version": "string",
"created_at": "2019-08-24T14:15:22Z",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"interfaced_subnet_ids": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"updated_at": "2019-08-24T14:15:22Z",
"version_status": {
"status": "Current",
"has_correct_docker_volume_mount": true,
"supports_unified_discovery": true,
"version": "string",
"warnings": [
{
"message": "string",
"severity": "Info",
"sunset_date": "string"
}
]
}
}
],
"meta": {
"api_version": 1,
"pagination": {
"has_more": true,
"limit": 50,
"offset": 0,
"total_count": 142
},
"server_version": "0.17.5"
},
"success": true,
"error": "string"
}Generate daemon install command
A pure, idempotent builder — it never mints or persists anything. The api key in an `install` command is a placeholder (`<API_KEY>`) the caller substitutes from the plaintext it holds; a `reconfigure` command carries no key at all. Minting is a separate mutation (`POST /provision`), so regenerating a command here (advanced-setting change, OS switch, the Details reconfigure view) never rotates the daemon's key. The server derives the exact command shape from the record: DaemonPoll vs ServerPoll for the flags, and — for `install` — whether the daemon has checked in (`last_seen`) to decide between a first-install and a minimal re-key command.
Bulk delete daemons
Next Page