diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/integrations/webhook/incoming.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/integrations/webhook/incoming.md b/doc/integrations/webhook/incoming.md index a48448cc5..e391cba92 100644 --- a/doc/integrations/webhook/incoming.md +++ b/doc/integrations/webhook/incoming.md @@ -20,6 +20,11 @@ You can send the message by including a JSON string as the `payload` parameter i payload={"text": "Hello, this is some text."} ``` +In addition, if `Content-Type` is specified as `application/json` in the headers of the HTTP request then the body of the request can be direct JSON. +``` +{"text": "Hello, this is some text."} +``` + It is also possible to post richly formatted messages using [Markdown](../../help/enduser/markdown.md). ``` payload={"text": "# A Header\nThe _text_ below **the** header."} |