Webhooks: Difference between revisions
Created page with "You can configure webhook endpoints via the API to be notified about events that happen in your Harmonizely account. <span style="background-color:#4dcb7b; color:white; paddi..." |
No edit summary |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
You can configure webhook endpoints via the API to be notified about events that happen in your | You can configure webhook endpoints via the API to be notified about events that happen in your SimplyMeet.me account. | ||
<span style="background-color:#4dcb7b; color:white; padding:5px; border-radius:15px;">POST</span>'''Create a webhook''' | <span style="background-color:#4dcb7b; color:white; padding:5px; border-radius:15px;">POST</span>'''Create a webhook''' | ||
<pre>https:// | <pre>https://secure.simplymeet.me/api/webhooks</pre> | ||
Creates a new webhook object.<br> | Creates a new webhook object.<br> | ||
| Line 29: | Line 29: | ||
["meetingScheduled", "meetingCancelled", "meetingRescheduled"]</pre> | ["meetingScheduled", "meetingCancelled", "meetingRescheduled"]</pre> | ||
|- | |- | ||
| secret<br><span style="font-size:10px; color: | | secret<br><span style="font-size:10px; color:red;">REQUIRED</span> | ||
| <code>string</code> | | <code>string</code> | ||
| The endpoint's secret used to generate webhook signatures. | | The endpoint's secret used to generate webhook signatures. | ||
| Line 88: | Line 88: | ||
<span style="background-color:#3158e2; color:white; padding:5px; border-radius:15px;">GET</span>'''List all webhooks''' | <span style="background-color:#3158e2; color:white; padding:5px; border-radius:15px;">GET</span>'''List all webhooks''' | ||
<pre>https:// | <pre>https://secure.simplymeet.me/api/webhooks</pre> | ||
Lists all webhooks. | Lists all webhooks. | ||
'''Request''' | '''Request''' | ||
| Line 154: | Line 154: | ||
<span style="background-color:red; color:white; padding:5px; border-radius:15px;">DELETE</span>'''Delete a webhook''' | <span style="background-color:red; color:white; padding:5px; border-radius:15px;">DELETE</span>'''Delete a webhook''' | ||
<pre>https:// | <pre>https://secure.simplymeet.me/api/webhooks/:id</pre> | ||
Deletes a webhook. | Deletes a webhook. | ||