Setting the temperature on a Netatmo Valve in Automation?

Im trying to set the temperature on a Netatmo valve, but am I missing something here? I have this fine control within my Lovelace with current temperature, and I can toggle the temperature up and down and that works perfect. But I can’t find anywhere to actual do this by automation, and define a temperature I want to set.

Am I looking the wrong places?

You can set the temperature by calling the service climate.set_temperature.

action:
  service: climate.set_temperature
  data:
    temperature: 21
    entity_id:
      - climate.your_thermostat

Thanks cgtobi! I was not aware of how the relation between the device type and services was. Now I know. It only seems that a few services was working for netatmo when I looked at the documentation.