signUp

@PostMapping(path = "users/signUp")
open fun signUp(payload: Map<String, String>): String

Method to sign up in the Refy's system

Return

the result of the request as String

Parameters

payload

: payload of the request


                             {
                                 "server_secret" : "the secret of the server" -> [String],
                                 "name" : "the name of the user" -> [String],
                                 "tag_name" : "the tag name of the user" -> [String],
                                 "surname": "the surname of the user" -> [String],
                                 "email": "the email of the user" -> [String],
                                 "password": "the password of the user" -> [String]
                             }