Webhooks testing
A crucial part of any integration is testing. To this end, CKEditor Cloud Services provides several tools that facilitate the testing of integration with webhooks.
# Ping event
After creating a webhook, CKEditor Cloud Services sends a straightforward ping
event that can be used to confirm that the integration works correctly.
Payload:
id
– The ID of the request.url
– The URL of the request.
# Example
You can find an example of a ping
event sent by CKEditor Cloud Services below.
{
"event": "ping",
"environment_id": "environment-1",
"payload": {
"id": "id",
"url": "url",
},
"sent_at": "2020-06-15T09:32:17.813Z"
}