action traccar_get_maintenance { label: "Fetch a list of Maintenance" description: "Without params, it returns a list of Maintenance the user has access to" provider: traccar method: GET path: "/maintenance" encoding: json input: { type: "object" properties: { all: { type: "boolean" } deviceId: { type: "integer" } groupId: { type: "integer" } refresh: { type: "boolean" } userId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } period: { type: "number" } start: { type: "number" } type: { type: "string" } } } } }