Endpoint: GET /webhooks

Response:

The webhook object

Example request

curl <https://api.height.app/webhooks> \\\\
  -H "Authorization: api-key secret_1234"

Example response

{
	"list": [
		{
			id: "6c4140d7-6ff0-4cf3-bc57-15ef370aa21d",
		  model: "webhook",
		  url: "<https://example.com/hook1>",
		  events: ["task.created", "task.updated", "task.deleted"],
		},
		{
			id: "81bdd80f-5650-45e0-b973-464387c4f475",
		  model: "webhook",
		  url: "<https://example.com/hook2>",
		  events: ["activity.created", "activity.updated", "activity.deleted"],
		}
	]
}