`GET /api/v1/agents/{node_id}/drift` — list drift records for an agent.
GET
/api/v1/agents/{node_id}/drift
const url = 'https://example.com/api/v1/agents/example/drift';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/agents/example/driftParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” node_id
required
string
Agent node ID
Query Parameters
Section titled “Query Parameters ” limit
integer
Maximum number of records to return. Default 50, max 500.
status
string
Filter by status variant: drifted, in_sync, failed, cancelled.
Responses
Section titled “ Responses ”Drift records for the agent
Media type application/json
Example generated
example