GET
/
v1
/
integrations
/
webhook
/
provider
/
{providerOrIntegrationId}
/
status
import { Novu, ProvidersIdEnum } from '@novu/node';

const novu = new Novu('<NOVU_SECRET_KEY>');

await novu.integrations.getWebhookProviderStatus(ProvidersIdEnum.SendGrid);

{
  "200": "The status of the webhook for the provider requested"
}

Enter your API key in the Authorization field like the example shown below:

E.g ApiKey 18d2e625f05d80e

import { Novu, ProvidersIdEnum } from '@novu/node';

const novu = new Novu('<NOVU_SECRET_KEY>');

await novu.integrations.getWebhookProviderStatus(ProvidersIdEnum.SendGrid);

{
  "200": "The status of the webhook for the provider requested"
}

Authorizations

Authorization
string
headerrequired

API key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".

Path Parameters

providerOrIntegrationId
string
required

Response

200 - application/json

The response is of type boolean.