action traccar_get_session { label: "Fetch Session information" provider: traccar method: GET path: "/session" encoding: json input: { type: "object" properties: { token: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { administrator: { type: "boolean" } attributes: { type: "object" properties: {} } coordinateFormat: { type: "string" } deviceLimit: { type: "integer" } deviceReadonly: { type: "boolean" } disabled: { type: "boolean" } email: { type: "string" } expirationTime: { type: "string" format: "date-time" description: "in IS0 8601 format. eg. `1963-11-22T18:30:00Z`" } id: { type: "integer" } latitude: { type: "number" } limitCommands: { type: "boolean" } longitude: { type: "number" } map: { type: "string" } name: { type: "string" } password: { type: "string" } phone: { type: "string" } poiLayer: { type: "string" } readonly: { type: "boolean" } twelveHourFormat: { type: "boolean" } userLimit: { type: "integer" } zoom: { type: "integer" } } } }