Skip to main content
Question

Incoming Webhook not working

  • July 20, 2021
  • 1 reply
  • 497 views

Hi all,

I created an Incoming Webhook URL for a Glip group, but it just can't pass the test.


Tried this command in the terminal, I'm using a MacBook.

curl -d '{"text": "sdfsd"}' -H 'Content-Type: application/json' my_webhook_url


It has an error message like the below:

{"status":"error","message":"Your request was accepted, however a post was not generated","error":"Invalid Custom payload: no supported fields","validation":[]}

1 reply

PhongVu
Community Manager
Forum|alt.badge.img
  • Community Manager
  • July 20, 2021

The new version of Glip webhook use the "body" instead of "text"

curl -d '{"body": "sdfsd"}' ...