action smart_me_pico_settings_get { label: "GET: api/pico/settings \n \n Returns the settings of a pico charging station." provider: smart_me method: GET path: "/api/pico/settings/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "DTO for the pico charging station settings" properties: { AuthenticationType: { type: "string" description: "The authentication type" enum: ["None", "Backend"] } CarIdDetection: { type: "boolean" description: "Flag if the car id detection is enabled" } DisplayBrightness: { type: "string" format: "byte" description: "The Brightness of the LCD Matrix display. 0 = minimum, 255 = maximum" } DnsName: { type: "string" description: "The DNS name of the pico's internal ip" } FixCableLockEnable: { type: "boolean" description: "Enable the fix lock of the charging cable" } IdleImageUrl: { type: "string" description: "The url of the idle image" } InternalIp: { type: "string" description: "The internal IP address" } LoadmanagementGroupId: { type: "string" description: "The ID of the loadmanagement group" } MaxCurrent: { type: "integer" format: "int32" description: "The max current of this station (in A)" } MinCurrent: { type: "integer" format: "int32" description: "The max current of this station (in A)" } ModbusTcp: { type: "boolean" description: "Flag if ModbusTcp is enabled" } Name: { type: "string" description: "The name of the station" } SerialNumber: { type: "string" description: "The Serial number of the station" } } } }