I'm running into issues with the HipChat API, I can't seem to get the history endpoint to accept a payload so I can narrow down my searches. I'm using a personal access token, and while I can get results from a basic /v2/room/{room_id}/history?auth_token=<auth>
curl I can't seem to get anything else to work. I've been testing with the max-results
query parameter. I've tried a couple of different iterations, things along the lines of:
/v2/room/{room_id}/history?auth_token=<auth>&max-results=10
/v2/room/{room_id}/history?max-results=10&auth_token=<auth>
/v2/room/{room_id}/history?reverse=false&max-results=10
I've read this answer, but it doesn't work for me, and actually causes my terminal to crash. Any suggestions?