fillRejectedTag

@PutMapping(path = "/{" + RELEASE_IDENTIFIER_KEY + "}" + EVENTS_ENDPOINT + "{" + RELEASE_EVENT_IDENTIFIER_KEY + "}" + TAGS_ENDPOINT + "{" + RELEASE_TAG_IDENTIFIER_KEY + "}", headers = [])
open fun fillRejectedTag(@PathVariable(value = "id") id: String, @PathVariable(value = "project_id") projectId: String, @PathVariable(value = "release_id") releaseId: String, @PathVariable(value = "release_event_id") eventId: String, @PathVariable(value = "release_tag_id") rejectedTagId: String, @RequestHeader(value = "token") token: String, @RequestBody payload: Map<String, String>): String

Method to fill a rejected tag

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 where fill the rejected tag

eventId

: the rejected event identifier where the rejected tag is attached

rejectedTagId

: the rejected tag to fill

token

: the token of the user

payload

: payload of the request:


             {
                 "comment" : "the comment to attach at the rejected tag" -> [String]
             }