deleteOrganizationLogo()
Deletes the logo of the given Organization.
Returns the deleted Organization.
function deleteOrganizationLogo(organizationId: string): Promise<Organization>- Name
organizationId- Type
string- Description
The ID of the Organization to delete the logo for.
const organizationId = 'org_123'
const response = await clerkClient.organizations.deleteOrganizationLogo(organizationId)Backend API (BAPI) endpoint
This method in the SDK is a wrapper around the BAPI endpoint DELETE/organizations/{organization_id}/logo. See the BAPI reference for more information.
Feedback
Last updated on