add Change Note

@PutMapping(path = ""/{" + PROJECT_IDENTIFIER_KEY + "}" + UPDATES_PATH + "{" + UPDATE_IDENTIFIER_KEY + "}" + ADD_CHANGE_NOTE_ENDPOINT", headers = [] )
open fun addChangeNote(@PathVariable(value = "id") id: String, @RequestHeader(value = "token") token: String, @PathVariable(value = "project_id") projectId: String, @PathVariable(value = "update_id") updateId: String, @RequestBody payload: Map<String, String>): String

Method to add a change note to an update

Return

the result of the request as String

Parameters

id

The identifier of the user

token

The token of the user

projectId

The identifier of the project where add the new change note

updateId

The identifier of the update where add the new change note

payload

The payload with the content of the change note