Get All Contacts
List contacts.
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. This method returns the all contacts defined in your project.
This method is on the Hub surface (norbix.hub.membership) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.membership.getAllContacts({
startingAfter: 'cursor_next',
pageSize: 10,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Membership.GetAllContactsAsync(new GetAllContacts
{
StartingAfter = "cursor_next",
PageSize = 10,
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.membership.get_all_contacts(
startingAfter="cursor_next",
pageSize=10,
)In the dashboard
Manage this visually in Norbix Cloud — see Membership → Users.
API reference
Full request and response for this endpoint: Get All Contacts.
Last updated