This endpoint will list all the active webhooks that are associated with your account. This also includes any webhooks that a teammate may have added.

Note: Zapier webhook connections via our Zapier integration will not appear within this list.

Endpoint

GET https://api.mailstand.com/webhooks

200 Response

{ status: "ok", data: [ { id: "hook_IbgSPC4u3QZtHBjPia7J4YDWz", url: "https://mywebhookurl.com", subscribed_to: [ "reply", "open" ], error_rate: 0 }, { id: "hook_3w7EzotetP36fSKrZrA6E7dV5", url: "https://mywebhookurl2.com", subscribed_to: [ "reply", "open" ], error_rate: 0 }, { id: "hook_400Ko82s8Z7l1yY3ibuJgCMao", url: "https://mywebhookurl3.com", subscribed_to: [ "reply", "open" ], error_rate: 0 } ] }

Response Fields

FieldTypeDescription
idstringUnique identifier for the webhook.
urlstringThe url of the webhook.
subscribed_toarrayThe type of webhook event this url is subscribed to. The options are send, reply, bounce, open, click, unsubscribe, pause, resume, stage_change, delete, any. any` will subscribe you to every single type. You can learn what each event type does by going here.
error_ratenumberThe number of errors that have occurred on this endpoint in the last 7 days.