action traccar_get_groups { label: "Fetch a list of Groups" description: "Without any params, returns a list of the Groups the user belongs to" provider: traccar method: GET path: "/groups" encoding: json input: { type: "object" properties: { all: { type: "boolean" } userId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attributes: { type: "object" properties: {} } groupId: { type: "integer" } id: { type: "integer" } name: { type: "string" } } } } }