summaryrefslogtreecommitdiffstats
path: root/doc/integrations/webhooks/Incoming.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/integrations/webhooks/Incoming.md')
-rw-r--r--doc/integrations/webhooks/Incoming.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/integrations/webhooks/Incoming.md b/doc/integrations/webhooks/Incoming.md
index 6e25f182e..0814eb420 100644
--- a/doc/integrations/webhooks/Incoming.md
+++ b/doc/integrations/webhooks/Incoming.md
@@ -56,7 +56,7 @@ payload={"channel": "off-topic", "text": "Hello, this is some text."}
Combining everything above, here is an example message made using a curl command:
```
-curl -i -X POST 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
+curl -i -X POST -d 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
```
A post with that text will be made to the Off-Topic channel.