DucoBox dos not execute function

Hi!

I tried to connect my Ducobox with the code below. There are no error messages and selecting the mode works fine. But… nothing happens to the Ducobox itself. Does anyone have an idea what I’m missing?

    ## Duco Ventilation Box
input_select:
  ducobox_mode:
    name: DucoBox
    icon: mdi:fan
    options:
      - "MAN1"
      - "MAN2"
      - "MAN3"

rest_command:
  ducobox_mode_man1:
    url: "192.168.178.56/nodesetoperstate?node=1&value=MAN1"
  ducobox_mode_man2:
    url: "192.168.178.56/nodesetoperstate?node=1&value=MAN2"
  ducobox_mode_man3:
    url: "192.168.178.56/nodesetoperstate?node=1&value=MAN3"

rest:
  - resource: http://192.168.178.56/nodeinfoget?node=1
    scan_interval: 15
    verify_ssl: false
    sensor:
      - name: DucoBox
        unique_id: ducobox
        value_template: "{{ value_json.state }}"
        icon: mdi:fan
        json_attributes:
          - devtype
          - location
          - state
          - mode
          - ovrl
          - swversion
          - serialnb

I found the solution after a night good sleep:

Ive added the HTTP:// to the rest_command

## Duco Ventilation Box
input_select:
  ducobox_mode:
    name: DucoBox
    icon: mdi:fan
    options:
      - "MAN1"
      - "MAN2"
      - "MAN3"

rest_command:
  ducobox_mode_man1:
    url: "HTTP://192.168.178.56/nodesetoperstate?node=1&value=MAN1"
  ducobox_mode_man2:
    url: "HTTP://192.168.178.56/nodesetoperstate?node=1&value=MAN2"
  ducobox_mode_man3:
    url: "HTTP://192.168.178.56/nodesetoperstate?node=1&value=MAN3"

rest:
  - resource: http://192.168.178.56/nodeinfoget?node=1
    scan_interval: 15
    verify_ssl: false
    sensor:
      - name: DucoBox
        unique_id: ducobox
        value_template: "{{ value_json.state }}"
        icon: mdi:fan
        json_attributes:
          - devtype
          - location
          - state
          - mode
          - ovrl
          - swversion
          - serialnb