deleteProject

@DeleteMapping(path = "/{" + IDENTIFIER_KEY + "}/" + PROJECTS_KEY + "/{" + PROJECT_IDENTIFIER_KEY + "}", headers = [])
open fun deleteProject(@PathVariable(value = "id") id: String, @PathVariable(value = "project_id") projectId: String, @RequestHeader(value = "token") token: String): String

Method to delete a project

Return

the result of the request as String

Parameters

id

: the identifier of the user

projectId

: the project identifier of the project to delete

token

: the token of the user