deleteOrganizationLogo

@DELETE(value = "organizations/{organization_id}/logo")
abstract suspend fun deleteOrganizationLogo(@Path(value = "organization_id") organizationId: String): ClerkResult<Organization, ClerkErrorResponse>

Deletes the logo for an organization.

Return

A ClerkResult containing either the updated Organization on success or a ClerkErrorResponse on failure

Parameters

organizationId

The unique identifier of the organization

See also