Questions tagged [hipchat]

HipChat is an instant-messaging service developed by Atlassian for group or one-to-one chat.

HipChat is an instant-messaging service developed by Atlassian for group or one-to-one chat. It integrates with other Atlassian services such as BitBucket, Confluence or JIRA, allowing notifications to be sent to a chat-room whenever code changes is committed, a wiki page is changed, or an issue is updated.

HipChat can either be installed locally as a client program, or used online via a web interface. The official website can be found at https://www.hipchat.com/

83 questions
2
votes
1 answer

Make Hubot send a direct message in HipChat

How do I tell Hubot to send a direct message using the HipChat adapter? I've tried many different options without success. module.exports = function (robot) { robot.respond(/hi/i, function (msg) { msg.send(msg.message.user.room, 'hi'); //…
duffn
  • 3,690
  • 8
  • 33
  • 68
2
votes
4 answers

How to post to hipchat from python

I have some python tools that I would like to have send updates to a hipchat room. I do this elsewhere with shell scripts, so I know it works in our environment, but I can't seem to get the token pushed to the hipchat API. Gotta be something…
Skip Huffman
  • 5,239
  • 11
  • 41
  • 51
1
vote
2 answers

How to send direct slack messages to users without a webhook?

I am migrating some code from hipchat to slack. There is one hipchat curl command I used to send dm's to users that I want to convert over to slack: msg='hello world' curl --fail -d "$(jq -c -n --arg msg "${msg}" '{"message_format": "text",…
Alex Cohen
  • 5,596
  • 16
  • 54
  • 104
1
vote
0 answers

Trigger Input Step in Jenkins via HipChat

I can find tons of information in the internet about integrating HipChat in a scripted Jenkins pipeline. So that works fine for me. But how can I post a status message to HipChat that contains an element to trigger an action back in…
Patrick T
  • 294
  • 3
  • 11
1
vote
1 answer

How to notify @all using curl hipchat api?

I am able to post to Hipchat using curl. But I can seem to have it take the @all It prints it as part of the message but it doesn't notify.
1
vote
1 answer

HipChat: How to fix spelling mistakes in a text with a slash?

To fix a spelling mistake just type s// But this doesn't seem to work if the contains a slash. Can the slash be escaped somehow? \/ does not seem to work.
BYTE RIDER
  • 169
  • 2
  • 12
1
vote
1 answer

Delete HipChat messages via the API

Pretty simple -- I've searched a lot online for ways to delete messages in HipChat via the API, but haven't found anything on how to do it. The only thing I did find was this ticket on the community forums, but it's a few years old and I'm not sure…
GDP2
  • 1,948
  • 2
  • 22
  • 38
1
vote
0 answers

How to share file with room in HipChat via Postman or Jersey client?

Please provide the solution for this (I am new to jersey and postman). I tried with below link but unable to share the file: https://www.hipchat.com/docs/apiv2/method/share_file_with_room I attached screen shots, which I tried from postman. Note:…
kalki
  • 51
  • 1
  • 6
1
vote
1 answer

Python: How to send file to hipchat?

How can I send a file from my local computer to hipchat using a python API? I am currently using Hypchat but it is not well documented. Here is my code so far: import hypchat hc = hypchat.HypChat("myKey") room = hc.get_room('bigRoom') I'm not…
user1367204
  • 4,549
  • 10
  • 49
  • 78
1
vote
0 answers

Is it possible to override sender name when using hipchat api to send notification?

Looking for a way to override sender name when using hipchat api to send notification. There is a "from" (/v2/room/{room_id_or_name}/notification) parameter that appends a name to the actual username. But I want to be able to replace my username.
quldude
  • 507
  • 5
  • 16
1
vote
1 answer

Hipchat-Confluence Integration on something other than a space

I know that you can integrate Atlassian Confluence spaces to Hipchat rooms and my company's Atlassian admin has enabled this integration. However, I'd like to integrate based on changes to a given page or any of its descendants, not on a space. Can…
harumph
  • 23
  • 6
1
vote
1 answer

Is it possible to factory-reset an HipChat server?

I want to remove all users, messages, ect but keep the vm settings. Is it possible to entirely factory-reset an HipChat server?
user7141836
1
vote
0 answers

Can't post to Hipchat by python (Curl works)

I'm trying to post to a hipchat room via Python and the v2 API. I can post without problems via curl in a shell script: ROOM_ID=123 AUTH_TOKEN=123456789 MESSAGE="Hello World" curl -H "Content-Type: application/json" \ -X POST \ -d "{…
Eike Pierstorff
  • 31,996
  • 4
  • 43
  • 62
1
vote
1 answer

python hypchat user message

I'm using the HypChat library but having some issues doing something simple, like sending myself a message. I'm looking through HipChat V2 API and I can create API tokens to do things like "Send Message" or "View Group". My issue is that I can't…
dwanderson
  • 2,775
  • 2
  • 25
  • 40
1
vote
1 answer

Uploading an image to HipChat using CPPREST SDK

I'm trying to upload an image to HipChat with CPPREST SDK with no success. There are examples for uploading images to other servers, but the HipChat API seems more complex (being very new to this I couldn't fill in the gaps...). From HipChat REST…
Ofer S
  • 37
  • 4