change Tag Name

@PatchMapping(path = "USERS_KEY + "/{" + IDENTIFIER_KEY + "}" + CHANGE_TAG_NAME_ENDPOINT", headers = [] )
open fun changeTagName(    @PathVariable(value = "id") id: String,     @RequestHeader(value = "token") token: String,     @RequestBody payload: Map<String, String>): String

Method to change the tag name of the user

Return

the result of the request as String

Parameters

id

The identifier of the user

token

The token of the user

payload

Payload of the request


                                            {
                                                "tag_na,e": "the new tag name of the user" -> [String]
                                            }