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
Name | Type | Description |
---|---|---|
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. |