Daemons
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.
Authorization<token>
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Query Parameters
network_id?string|null
Filter by network ID
Format
uuidgroup_by?null|DaemonOrderField
Primary ordering field (used for grouping). Always sorts ASC to keep groups together.
order_by?null|DaemonOrderField
Secondary ordering field (sorting within groups or standalone sort).
order_direction?null|OrderDirection
Direction for order_by field (group_by always uses ASC).
limit?integer|null
Maximum number of results to return (1-1000, default: 50). Use 0 for no limit.
Format
int32Range
0 <= value <= 1000offset?integer|null
Number of results to skip. Default: 0.
Format
int32Range
0 <= valueResponse Body
application/json
curl -X GET "https://loading/api/v1/daemons"{
"data": [
{
"capabilities": {
"interfaced_subnet_ids": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"has_docker_socket": true
},
"host_id": "eb4e20fc-2b4a-4d0c-811f-48abcf12b89b",
"last_seen": "2019-08-24T14:15:22Z",
"mode": "Push",
"name": "string",
"network_id": "d6797cf4-42b9-4cad-8591-9dd91c3f0fc3",
"tags": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
],
"url": "string",
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"version": "string",
"created_at": "2019-08-24T14:15:22Z",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"updated_at": "2019-08-24T14:15:22Z",
"version_status": {
"status": "Current",
"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.13.5"
},
"success": true,
"error": "string"
}