Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

updateOrganizationMetadata()

Updates the metadata associated with the specified organization ID.

const organizationId = 'my-organization-id';
 
const update = clerkClient.organizations.updateOrganizationMetadata(organizationId,{
  publicMetadata:{
    "example": "metadata"
  }
});

UpdateOrganizationMetadataParams

NameTypeDescription
publicMetadata?Record<string, unknown>Metadata saved on the organization, that is visible to both your Frontend and Backend APIs.
privateMetadata?Record<string, unknown>Metadata saved on the organization that is only visible to your Backend API.

Was this helpful?

Clerk © 2023