Webhooks

List webhook endpoints

Lists the webhook endpoints owned by the authenticated user. Requires the webhooks:read scope when called with a scoped key.

GET/v1/webhooks

Lists the webhook endpoints owned by the authenticated user. Requires the webhooks:read scope when called with a scoped key.

AuthorizationBearer <token>

Pass Authorization: Bearer mapleads_xxx.

In: header

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/webhooks"
{  "data": [    {      "id": "string",      "url": "http://example.com",      "eventTypes": [        "string"      ],      "enabled": true,      "createdAt": "2019-08-24T14:15:22Z"    }  ]}