deleteRelease

@DeleteMapping(path = "/{" + RELEASE_IDENTIFIER_KEY + "}", headers = [])
open fun deleteRelease(@PathVariable(value = "id") id: String, @PathVariable(value = "project_id") projectId: String, @PathVariable(value = "release_id") releaseId: String, @RequestHeader(value = "token") token: String): String

Method to delete a release

Return

the result of the request as String

Parameters

id

: the identifier of the user

projectId

: the project identifier where the release is attached

releaseId

: the release identifier of the release to delete

token

: the token of the user