action rumble_get_agent { label: "Get details for a single agent" provider: rumble method: GET path: "/org/agents/{agent_id}" encoding: json input: { type: "object" properties: { agent_id: { type: "string" format: "uuid" } } required: ["agent_id"] additionalProperties: false } output: { type: "object" required: ["id"] properties: { arch: { type: "string" } client_id: { type: "string" format: "uuid" } connected: { type: "boolean" } created_at: { type: "integer" format: "int64" } deactivated_at: { type: "integer" format: "int64" } external_ip: { type: "string" } host_id: { type: "string" } hub_id: { type: "string" format: "uuid" } id: { type: "string" format: "uuid" } inactive: { type: "boolean" } internal_ip: { type: "string" } last_checkin: { type: "integer" format: "int64" } name: { type: "string" format: "hostname" } organization_id: { type: "string" format: "uuid" } os: { type: "string" } site_id: { type: "string" format: "uuid" } system_info: { type: "object" } updated_at: { type: "integer" format: "int64" } version: { type: "string" } } } }