deleteOrganizationLogoWithHttpInfo method

Future<Response> deleteOrganizationLogoWithHttpInfo(
  1. String organizationId
)

Delete the organization's logo.

Delete the organization's logo.

Note: This method returns the HTTP Response.

Parameters:

  • String organizationId (required): The ID of the organization for which the logo will be deleted.

Implementation

Future<http.Response> deleteOrganizationLogoWithHttpInfo(
  String organizationId,
) async {
  // ignore: prefer_const_declarations
  final path = r'/organizations/{organization_id}/logo'
      .replaceAll('{organization_id}', organizationId);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}