Webhook
Webhook Properties
Field
Description
active
Whether events should be sent to this webhook. Can be either true
or false
. Defaults to true
.
created_at
When a Webhook
was created on the Malomo Platform.
id
Unique identifier per Webhook
.
topic
Event that triggers a webhook.
updated_at
When a Webhook
was last updated.
url
URL webhook events should be sent to.
Create a Webhook
POST
https://api.gomalomo.com/webhooks
Request Body
active
boolean
Whether to send events to a webhook. Defaults to true
.
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
id
string
Unique identifier of the desired Webhook
.
Retrieve a List of Webhooks
GET
https://api.gomalomo.com/webhooks
Query Parameters
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
id
string
Unique identifier of the Webhook
to update.
Request Body
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
id
string
Unique identifier of the Webhook
to be deleted.
Last updated