GET
/
webhooks
List 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

List of webhooks

id
string
Example:

"webhook_12345abcde"

name
string
Example:

"CRM Integration"

url
string
Example:

"https://your-app.com/kakiyo/webhook"

events
string[]
Example:
[
"linkedin.message.received",
"prospect.qualification.manual"
]
active
boolean
Example:

true

lastSuccess
string<date-time>
Example:

"2023-06-15T10:30:00Z"

lastFailure
string<date-time>
Example:

null

successCount
integer
Example:

42

failureCount
integer
Example:

0

createdAt
string<date-time>
Example:

"2023-05-10T08:15:00Z"