How to list registered webhooks

List all the URLs registered as webhooks in Toky

πŸ“˜

API Endpoint used

/webhooks

To list registered webhooks with Toky you can use our reference page and follow these steps:

1097
  1. Enter your API Key. You can learn how to get yours in this article

  2. Click on the Try It button to list all the registered webhooks.

You will get a response with the following JSON data:

{
"count": 2,
"next": null,
"results": [
  {
  "id": "11",
  "created_at": "2017-06-27 19:24:10",
  "event": "new_call",
  "hook_url": "https://your.hook.url/for_toky_events"
  },
	...
}

πŸ“˜

Important

The id can be used later if you want to remove the webhook.