action traccar_get_notifications { label: "Fetch a list of Notifications" description: "Without params, it returns a list of Notifications the user has access to" provider: traccar method: GET path: "/notifications" 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: { always: { type: "boolean" } attributes: { type: "object" properties: {} } calendarId: { type: "integer" } id: { type: "integer" } mail: { type: "boolean" } sms: { type: "boolean" } type: { type: "string" } web: { type: "boolean" } } } } }