Grant Contact Consent
grant Contact Consent.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.notifications.grantContactConsent({
contactId: 'ct_4kX9mQvR2tYw7ZbC1dFgHj',
channel: 'email',
lawfulBasis: 'consent',
evidenceRef: 'ticket-4821',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Notifications.GrantContactConsentAsync(new GrantContactConsentRequest
{
ContactId = "ct_4kX9mQvR2tYw7ZbC1dFgHj",
Channel = "email",
LawfulBasis = "consent",
EvidenceRef = "ticket-4821",
});In the dashboard
API reference
Last updated