Webhook
Webhook Properties
Field | Description |
| Whether events should be sent to this webhook. Can be either |
| When a |
| Unique identifier per |
| Event that triggers a webhook. |
| When a |
| URL webhook events should be sent to. |
Create a Webhook
POST
https://api.gomalomo.com/webhooks
Request Body
Name | Type | Description |
---|---|---|
active | boolean | Whether to send events to a webhook. Defaults to |
secret | string | Key used to sign webhook events. |
topic | string | Event that triggers a webhook. |
url | string | URL to send webhook events to. |
Retrieve a Webhook
GET
https://api.gomalomo.com/webhooks/:id
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Unique identifier of the desired |
Retrieve a List of Webhooks
GET
https://api.gomalomo.com/webhooks
Query Parameters
Name | Type | Description |
---|---|---|
prev | string | Retrieve webhooks before a given cursor. |
next | string | Retrieve webhooks after a given cursor. |
Update a Webhook
PUT
https://api.gomalomo.com/webhooks/:id
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Unique identifier of the |
Request Body
Name | Type | Description |
---|---|---|
active | boolean | Whether to send events to a webhook. |
url | string | URL to send webhook events to. |
Delete a Webhook
DELETE
https://api.gomalomo.com/webhooks/:id
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Unique identifier of the |
Last updated