Webhooks

Update Webhook Secret

PATCH

Updates your Webhook Secret if it exists. Requires a secret parameter.

Returns an error if you don’t have a secret configured.


For more information see the WebhookSecret Model.

Request

This endpoint expects an object.
secret
stringOptional
Secret we will pass along with any Webhooks we send to your subscribed endpoints.

Response

This endpoint returns an object
secret
stringOptional
Secret we will pass along with any Webhooks we send to your subscribed endpoints.
PATCH
1curl -X PATCH https://app.impiloplatform.com/api/v3/webhook-secret \
2 -H "Impilo-API-Key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
200
Updated
1{
2 "secret": "secret"
3}