For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Membership Integrations

get Membership Integrations.

A membership integration connects an external identity provider (Google, Facebook, Apple, Azure AD, and others) so your users can sign in with it. Provider secrets are configured in the dashboard. This method returns the membership integrations defined in your project.

This method is on the Hub surface (norbix.hub.membership) — call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables — each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.membership.getMembershipIntegrations({
  startingAfter: 'cursor_next',
  endingBefore: 'cursor_prev',
  pageSize: 10,
  paging: { pageSize: 20 },
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Membership.GetMembershipIntegrationsAsync(new GetMembershipIntegrations
{
    StartingAfter = "cursor_next",
    EndingBefore = "cursor_prev",
    PageSize = 10,
    Paging = new PagingArgs { PageSize = 20 },
});

In the dashboard

Manage this visually in Norbix Cloud — see Membership → Integrations.

API reference

Full request and response for this endpoint: Get Membership Integrations.

Last updated