Skip to content

Instantly share code, notes, and snippets.

@saiyam1814
Created January 15, 2018 16:20
Show Gist options
  • Save saiyam1814/5284bde07290a8985ea760d9f6a4d37d to your computer and use it in GitHub Desktop.
Save saiyam1814/5284bde07290a8985ea760d9f6a4d37d to your computer and use it in GitHub Desktop.
This is the curl command for posting to flowdock Raw
# Replace FLOWTOKEN with actual Token
# get token for different flows from : https://www.flowdock.com/account/tokens
curl -X POST \
https://api.flowdock.com/v1/messages/chat/FLOWTOKEN \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-H 'postman-token: 6d81aa94-23d1-3999-c28b-c82012acd002' \
-d '
{
"content":":white_check_mark:**Write you message to post here**",
"external_user_name":"Bot",
"status": {
"color": "red",
"value": "open"
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment