move Change Note

@PutMapping(path = "/{" + PROJECT_IDENTIFIER_KEY + "}" + UPDATES_PATH + "{" + UPDATE_IDENTIFIER_KEY + "}/" + NOTES_KEY + "/{" + NOTE_IDENTIFIER_KEY + "}" + MOVE_ENDPOINT + "{" + DESTINATION_UPDATE_IDENTIFIER_KEY + "}", headers = [] )
open fun moveChangeNote(@PathVariable(value = "id") id: String, @RequestHeader(value = "token") token: String, @PathVariable(value = "project_id") projectId: String, @PathVariable(value = "update_id") sourceUpdateId: String, @PathVariable(value = "note_id") noteId: String, @PathVariable(value = "destination_update_id") destinationUpdateId: String): String

Endpoint used to move a change note from an update to other update

Return

the result of the request as String

Since

1.2.0

Parameters

id

The identifier of the user

token

The token of the user

projectId

The identifier of the project where manage the change note

sourceUpdateId

The identifier of the update from move the change note

noteId

The identifier of the note

destinationUpdateId

The identifier of the update to move the change note