Skip to content

Instantly share code, notes, and snippets.

@loa
Created February 23, 2015 13:51
Show Gist options
  • Save loa/3c2cc12838496cc52083 to your computer and use it in GitHub Desktop.
Save loa/3c2cc12838496cc52083 to your computer and use it in GitHub Desktop.
Hipchat Message api v2
#!/bin/bash
# https://gist.github.com/danriti/7345074
ROOM_ID=1
MESSAGE="$(hostname): $1"
AUTH_TOKEN="secret"
curl -H "Content-Type: application/json" \
-X POST \
--silent \
-d "{\"color\": \"green\", \"message_format\": \"text\", \"message\": \"$MESSAGE\" }" \
https://api.hipchat.com/v2/room/$ROOM_ID/notification?auth_token=$AUTH_TOKEN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment