updateOrganizationLogo

@Multipart
@PUT(value = "organizations/{organization_id}/logo")
abstract suspend fun updateOrganizationLogo(@Path(value = "organization_id") organizationId: String, @Part file: MultipartBody.Part): ClerkResult<Organization, ClerkErrorResponse>

Updates 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

file

The logo file to upload as a multipart body

See also