v1_blog_admin_webhooks_partial_update
PATCH
/v1/blog/admin/webhooks/{webhook_id}/
const url = 'https://api.your-domain.com/api/v1/blog/admin/webhooks/example/';const options = {method: 'PATCH', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://api.your-domain.com/api/v1/blog/admin/webhooks/example/ \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”webhook_id
required
string
Responses
Section titled “Responses”Media typeapplication/json