Set Contact Tag Subscription
set Contact Tag Subscription.
A contact (user) is a person in your project's membership directory, with one or more linked logins (identities). Membership manages their profile, identities, roles, and lifecycle. Sets the contact tag subscription.
This method is on the runtime API surface (norbix.api.membership) — call it from your app.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.api.membership.setContactTagSubscription({
contactId: 'ct_4kX9mQvR2tYw7ZbC1dFgHj',
commChannel: 'email',
channel: 'email',
tag: 'newsletter',
subscribed: true,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Api;
using var client = new NorbixClient();
var result = await client.Membership.SetContactTagSubscriptionAsync(new SetContactTagSubscriptionRequest
{
ContactId = "ct_4kX9mQvR2tYw7ZbC1dFgHj",
CommChannel = "email",
Channel = "email",
Tag = "newsletter",
Subscribed = true,
});In the dashboard
Manage this visually in Norbix Cloud — see Membership → Users.
API reference
Full request and response for this endpoint: Set Contact Tag Subscription.
Last updated