πValidating Webhook Signatures
How to verify that a webhook was genuinely sent by PlannrCRM
Step 1 β Retrieve your signing secret
GET /api/v2/webhook-subscriptions{
"data": [
{
"uuid": "53f22fe4-3731-4cdc-aa12-e65bd0b15e52",
"created_at": "2024-01-15T10:30:00+00:00",
"updated_at": "2024-01-15T10:30:00+00:00",
"signing_secret": "AbCdEfGhIjKlMnOpQrStUvWxYz0123456789AbCdEfGhIjKlMnOpQrSt",
"url": "https://api.example.com/webhooks",
"events": ["account.created", "client.updated"],
"last_outgoing_webhook_call_at": "2024-03-01T14:22:11+00:00"
}
]
}Step 2 β Understand the signature
Step 3 β Verify the signature
Security recommendations
Recommendation
Detail
Last updated
Was this helpful?