v1

latestOpenAPI 3.1.02026-07-2483219318.4 KB
Webhooks

Get all webhooks

Gets the active webhook subscriptions that your app has created for the user.

For more details about webhooks see:

  • 📖 Webhooks reference
  • 📖 Webhooks events
get/webhooks

Headers

X-Akahu-Idstring required

Your App ID Token.

Response

Successful response.

successboolean

Example response

{
  "items": [
    {
      "_id": "hook_1111111111111111111111111",
      "created_at": "2020-04-08T23:15:39.917Z",
      "updated_at": "2020-04-08T23:15:39.917Z",
      "last_called_at": "2020-04-08T23:15:39.917Z",
      "state": "foobarbaz",
      "url": "https://webhooks.myapp.com/akahu"
    }
  ]
}