Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

getOrganization()

Retrieves a single organization by the organization ID, if the ID is valid, or by the organization slug.

const organizationId = 'my-organization-id';
 
const organization = await clerkClient.organizations.getOrganization({
  organizationId
});

GetOrganizationParams

NameTypeDescription
organizationId | slugstringThe ID of the organization to retrieve, or the slug of the organization to retrieve.

Example

getOrganization( { slug })

Retrieve an organization by its slug.

const organizationSlug = 'my-organization-slug';
 
const organization = await clerkClient.organizations.getOrganization({
  slug: organizationSlug
});

Was this helpful?

Clerk © 2023