GET
/
account
/
webhook
Get All Webhooks
curl --request GET \
  --url https://api.sendpost.io/api/v1/account/webhook \
  --header 'X-Account-ApiKey: <api-key>'
[
  {
    "id": 117,
    "enabled": true,
    "url": "https://app.hooli.com/email/webhook",
    "processed": true,
    "delivered": true,
    "dropped": false,
    "softBounced": false,
    "hardBounced": true,
    "opened": true,
    "clicked": true,
    "unsubscribed": true,
    "spam": true,
    "created": 1567512491588004000
  }
]

Authorizations

X-Account-ApiKey
string
header
required

This api key can be used for all account level operations

Query Parameters

limit
integer

Number of records to return per request.

Example:

10

offset
integer

Number of initial records to skip.

Example:

0

Case insensitive search against webhook URL.

Example:

"hooli"

Response

200 - application/json

A list of webhooks.

The response is of type object[].