Pular para o conteúdo principal
GET
/
webhooks
/
v3
/
{appId}
/
subscriptions
Ler assinaturas de evento
curl --request GET \
  --url https://api.hubapi.com/webhooks/v3/{appId}/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "active": true,
      "createdAt": "2019-10-30T03:30:17.883Z",
      "eventType": "contact.propertyChange",
      "id": "12",
      "propertyName": "email",
      "updatedAt": "2019-11-30T03:30:17.883Z"
    },
    {
      "active": true,
      "createdAt": "2019-10-30T03:30:17.883Z",
      "eventType": "deal.creation",
      "id": "13",
      "updatedAt": "2019-11-30T03:30:17.883Z"
    }
  ]
}

Supported products

Autorizações

Authorization
string
header
obrigatório

The access token received from the authorization server in the OAuth 2.0 flow.

Parâmetros de caminho

appId
integer<int32>
obrigatório

O ID do aplicativo de destino.

Resposta

successful operation

List of event subscriptions for your app

results
object[]
obrigatório

Uma matriz que contém todas as assinaturas de eventos ativas e pausadas configuradas para o aplicativo.

Last modified on April 13, 2026