Sign in

Update a webhook endpoint

documented

Updates the webhook endpoint configuration.

PATCH /register/webhooks/{id}Webhooksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://thirdparty-sandbox.staging.qonto.co/register/webhooks/{{$id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Qonto-Partner-Id: {{QONTO_API_KEY}}" \
  -H "X-Qonto-Staging-Token: {{X_QONTO_STAGING_TOKEN}}" \
  -d '{"callback_url": "{{$callback_url}}", "enabled": {{$enabled}}, "secret": "{{$secret}}"}'