Upcoming Mid April 2026
List My Organizations
Returns a paginated list of organizations the authenticated user belongs to.GET /identity/memberships/my/organizations
Query Parameters
Page number.
Results per page.
Sort order.
ASC or DESC.Field to sort by.
cURL
Best Practices
- Cache the organization list — Organization memberships change infrequently. Cache the response locally and refresh only on login or when the user explicitly switches contexts.
- Use
hasNextPagefor pagination — Don’t assume a fixed page count. Use thehasNextPageflag to determine whether to fetch more results. - Filter by
status: ACTIVE— The response may include inactive organizations. Filter client-side or let the user choose only from active ones.
Get Organization
Retrieve a single organization by ID.GET /network/v1/organization/{orgId}
Path Parameters
The organization ID.
cURL
Best Practices
- Use to validate org context — Call this after switching organizations to confirm the org exists and is active before making further requests.
- Store
niceNamefor display — UseniceName(human-readable) in UI, and_idoridfor API calls.
