action traccar_put_geofences_id { label: "Update a Geofence" provider: traccar method: PUT path: "/geofences/{id}" encoding: json input: { type: "object" properties: { area: { type: "string" } attributes: { type: "object" properties: {} } calendarId: { type: "integer" } description: { type: "string" } id: { type: "integer" } name: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { area: { type: "string" } attributes: { type: "object" properties: {} } calendarId: { type: "integer" } description: { type: "string" } id: { type: "integer" } name: { type: "string" } } } }