This interface defines the structure of the request body used when updating an existing Organization.
export interface UpdateOrganizationRequest {
    name?: string;
    display_name?: string;
    description?: string;
    logo_url?: string;
}

Properties

  • name (string, optional): The updated name of the organization.
  • display_name (string, optional): The updated display name of the organization.
  • description (string, optional): The updated description of the organization.
  • logo_url (string, optional): The updated URL of the organization’s logo.