PATCH
/
radar
/
operator
/
v1
/
webhooks
Update webhook configuration
curl --request PATCH \
  --url https://api.snitcher.com/radar/operator/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "delivery": {
    "webhook_url": "https://example.com/webhook",
    "webhook_secret": "my-little-secret"
  }
}'
{
  "success": true,
  "data": [
    {
      "delivery": {
        "webhook_url": "<string>",
        "signature": "<string>"
      }
    }
  ],
  "message": "Webhook configuration updated successfully"
}

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Body

application/json

Webhook configuration parameters

The body is of type object.

Response

200
application/json

Webhook configuration updated successfully

The response is of type object.