Skip to main content
POST
/
webhooks
/
test
Test Webhook
curl --request POST \
  --url https://api.kakiyo.com/v1/webhooks/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "event": "linkedin.message.received",
  "data": {
    "message": "This is a test message"
  }
}'
{
  "message": "Test webhook sent successfully",
  "event": "linkedin.message.received",
  "webhooksCount": 2,
  "webhooks": [
    {
      "id": "webhook_12345abcde",
      "name": "CRM Integration",
      "url": "https://your-app.com/kakiyo/webhook"
    }
  ]
}

Authorizations

Authorization
string
header
required

Body

application/json
event
enum<string>
required
Available options:
linkedin.message.sent,
linkedin.message.received,
linkedin.invitation.sent,
linkedin.invitation.accepted,
prospect.qualification.manual,
prospect.unqualified
Example:
data
object
Example:

Response

message
string
Example:
event
string
Example:
webhooksCount
integer
Example:
webhooks
object[]