deleteJWTTemplateWithHttpInfo method

Future<Response> deleteJWTTemplateWithHttpInfo(
  1. String templateId
)

Delete a Template

Note: This method returns the HTTP Response.

Parameters:

  • String templateId (required): JWT Template ID

Implementation

Future<http.Response> deleteJWTTemplateWithHttpInfo(
  String templateId,
) async {
  // ignore: prefer_const_declarations
  final path =
      r'/jwt_templates/{template_id}'.replaceAll('{template_id}', templateId);

  // 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,
  );
}