Ansible with Gotify Notifications

this works for me.

- name: Send Gotify Message
      ansible.builtin.uri:
        url: "https://gotify.doma.in/message?token=<app_token>"
        method: POST
        body_format: json
        body:
          title: Hello World
          message: "Hello from Ansible via Gotify"
1 Like