diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | gotify.sh.example | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62883ad --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/gotify.sh diff --git a/gotify.sh.example b/gotify.sh.example new file mode 100644 index 0000000..72caa06 --- /dev/null +++ b/gotify.sh.example @@ -0,0 +1,6 @@ +curl --request POST \ + --url 'https://gotify.tildeverse.org/message?token=redacted' \ + --header 'accept: application/json' \ + --header 'content-type: application/json' \ + --header 'x-gotify-key: redacted' \ + --data '{ "message": "A hero is needed in #institute", "priority": 2, "title": "Admin Request" }' |