Get Account Collaborators
Gets account team members (collaborators).
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.getAccountCollaborators({
includeAccountOwner: true,
userShouldHavePushDevice: true,
userIds: ['usr_4kX9mQvR2tYw7ZbC1dFgHj'],
roleNames: ['item-1'],
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.GetAccountCollaboratorsAsync(new GetAccountCollaborators
{
IncludeAccountOwner = true,
UserShouldHavePushDevice = true,
UserIds = new[] { "usr_4kX9mQvR2tYw7ZbC1dFgHj" },
RoleNames = new[] { "item-1" },
});In the dashboard
API reference
Last updated