action traccar_put_notifications_id { label: "Update a Notification" provider: traccar method: PUT path: "/notifications/{id}" encoding: json input: { 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" } } required: ["id"] additionalProperties: false } output: { 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" } } } }