Postman
Postman is a GUI tool for sending web requests.
Download it from official website. Available for Windows, Linux, and macOS.
Here's how to use it:
- Click
+
on the tabs panel. - Click on dropdown in front of URL field and choose
POST
. - Paste Webhook URL in URL field.
- Click
Body
tab >raw
>JSON
from the dropdown. - Paste the body below.
- Press
Send
. - If status shows
204 No Content
means request succeed!
Sending attachments
To send attachment(s):
- Switch from
raw
toform-data
. - Hover on key field, click on dropdown and choose
File
. - Click
Select Files
and select file (despite it allowing you to choose multiple files, choose one). - Repeat if you want to add more attachments.
- To add json to request add key with
payload_json
name and json body value (dropdown must sayText
).