POST Ping

POST https://webhook.example.com
application/json

Body Required

  • id string Required
  • correlationId string Required
  • webhookConfigurationId string Required
  • version string Required
  • entity Required

    Value is Ping.

  • data object Required
    Hide data attribute Show data attribute object
    • ping Required

      Value is pong.

Responses

  • 200

    Your server returns this code if it succesfully processed the event

  • 201

    Your server returns this code if it succesfully processed the event

  • 202

    Your server returns this code if it succesfully processed the event

  • 204

    Your server returns this code if it succesfully processed the event

POST Ping
Request examples
{
  "id": "string",
  "correlationId": "string",
  "webhookConfigurationId": "string",
  "version": "string",
  "entity": "Ping",
  "data": {
    "ping": "pong"
  }
}