action traccar_get_reports_route { label: "Fetch a list of Positions within the time period for the Devices or Groups" description: "At least one _deviceId_ or one _groupId_ must be passed" provider: traccar method: GET path: "/reports/route" encoding: json input: { type: "object" properties: { deviceId: { type: "array" items: { type: "integer" } } from: { type: "string" format: "date-time" } groupId: { type: "array" items: { type: "integer" } } to: { type: "string" format: "date-time" } } required: ["from", "to"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { accuracy: { type: "number" } address: { type: "string" } altitude: { type: "number" } attributes: { type: "object" properties: {} } course: { type: "number" } deviceId: { type: "integer" } deviceTime: { type: "string" format: "date-time" description: "in IS0 8601 format. eg. `1963-11-22T18:30:00Z`" } fixTime: { type: "string" format: "date-time" description: "in IS0 8601 format. eg. `1963-11-22T18:30:00Z`" } id: { type: "integer" } latitude: { type: "number" } longitude: { type: "number" } network: { type: "object" properties: {} } outdated: { type: "boolean" } protocol: { type: "string" } serverTime: { type: "string" format: "date-time" description: "in IS0 8601 format. eg. `1963-11-22T18:30:00Z`" } speed: { type: "number" description: "in knots" } valid: { type: "boolean" } } } } }