Skip to main content
PATCH
/
webhooks
/
{id}
Atualizar Webhook
curl --request PATCH \
  --url http://localhost:3000/api/webhooks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "name": "<string>",
  "active": true
}
'
id
string
required
ID do webhook.
url
string
Nova URL.
name
string
Novo nome.
active
boolean
Ativar ou desativar o webhook.