Get daemon by ID
Returns a specific daemon with computed version status.
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Path Parameters
Daemon ID
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://app.scanopy.net/api/v1/daemons/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"meta": {
"api_version": 1,
"server_version": "0.17.7"
},
"success": true,
"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": "https://daemon.example.com:60073",
"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": "0.17.7",
"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,
"sunset_date": "string",
"supports_targeted_rescan": true,
"supports_unified_discovery": true,
"version": "string",
"warnings": [
{
"message": "string",
"severity": "Info",
"sunset_date": "string"
}
]
}
},
"error": "string"
}{
"meta": {
"api_version": 1,
"server_version": "0.17.7"
},
"success": true,
"code": "string",
"error": "string",
"params": {
"property1": null,
"property2": null
}
}{
"meta": {
"api_version": 1,
"server_version": "0.17.7"
},
"success": true,
"code": "string",
"error": "string",
"params": {
"property1": null,
"property2": null
}
}Export Daemons to CSV
Export all Daemons matching the filter criteria to CSV format. Ignores pagination parameters (limit/offset) and exports all matching records.
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.