Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

getOrganizationList()

Retrieves an organization list:

const organizations = await clerkClient.organizations.
getOrganizationList();

GetOrganizationListParams

NameTypeDescription
limitnumberThe number of results to return.
offsetnumberThe number of results to skip.
query?stringThe query to search for.

Example

getOrganizationList({ limit })

Retrieves organization list that is filtered by the number of results:

const sessions = await clerkClient.organizations.getOrganizationList({
  // returns the first 10 results
  limit: 10,
});

Was this helpful?

Clerk © 2023