action smart_me_get_api_pico_loadmanagementgroup { label: "GET: api/pico/loadmanagementgroup \n \n Returns all available load management groups" provider: smart_me method: GET path: "/api/pico/loadmanagementgroup" encoding: json output: { type: "array" items: { type: "object" description: "DTO for the pico loadmanagement group" properties: { Id: { type: "string" description: "The ID of the loadmanagement group" } MaxCurrent: { type: "number" format: "double" description: "The max current of this loadmanagement group" } Name: { type: "string" description: "The name of the station" } NumberOfStations: { type: "integer" format: "int32" description: "The number of assigned stations" } } } } }