Webhooks

Get all webhooks

get/webhooks

Query parameters

type'marketing' | 'transactional' | 'inbound'

Filter on webhook type

sort'asc' | 'desc'

Sort the results in the ascending/descending order of webhook creation

Response

Webhooks informations

Example response

{
  "webhooks": [
    {
      "url": "http://requestb.in/173lyyx1",
      "id": 654,
      "description": "Webhook triggered on campaign openings",
      "events": [
        "opens,clicks"
      ],
      "type": "marketing",
      "createdAt": "2016-12-01T12:50:00Z",
      "modifiedAt": "2017-05-12T13:15:00Z"
    }
  ]
}

Changes