v1

latestOpenAPI 3.1.02026-07-14159142161.9 KB
outgoing webhooks (usersService)

Toggle Outgoing Webhook Status

Toggles the active status of an outgoing webhook.

patch/company/v1/webhooks/{webhookId}/toggle

Path parameters

webhookIdinteger required

Outgoing Webhook id

Response

OK

idinteger
urlstring uri

Should be unique per portal

activeboolean
user_idinteger
confirmedboolean
created_atinteger
updated_atinteger

Example response

{
  "id": 16,
  "url": "https://my-webhook-domain/?param=uspacy",
  "active": true,
  "user_id": 1,
  "confirmed": true,
  "created_at": 1732739313,
  "updated_at": 1732739313,
  "events": [
    {
      "service": "crm",
      "type": "entity_crm",
      "table_name": "leads"
    }
  ]
}