POST
/
v1
/
webhook-deliveries
/
{id}
/
verify
Verify webhook payload signature
curl --request POST \
  --url https://api.ghostsecurity.ai/v1/webhook-deliveries/{id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "payload": "<string>",
  "signature": "<string>"
}'
{
  "delivery_id": "<string>",
  "message": "<string>",
  "status": "<string>",
  "valid": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Webhook Delivery ID

Body

application/json

Payload verification data

Webhook payload verification request

Response

200
application/json

OK

Webhook payload verification response