GET
/
webhooks
curl --request GET \
  --url https://api.kakiyo.com/v1/webhooks \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "webhook_12345abcde",
    "name": "CRM Integration",
    "url": "https://your-app.com/kakiyo/webhook",
    "events": [
      "linkedin.message.received",
      "prospect.qualification.manual"
    ],
    "active": true,
    "lastSuccess": "2023-06-15T10:30:00Z",
    "lastFailure": null,
    "successCount": 42,
    "failureCount": 0,
    "createdAt": "2023-05-10T08:15:00Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

List of webhooks

The response is of type object[].