join

@PostMapping(path = "PROJECTS_KEY + JOIN_ENDPOINT")
open fun join(@RequestBody payload: Map<String, String>): String

Method to join in a project. If the member is already logged in the same server will be just add to the project, else will be signed up and returned the credentials after joined in the project

Return

the result of the request as String

Parameters

payload

: payload of the request


             {
                 "id" : "the identifier of the joining qrcode" -> [String] //OR "join_code": "the textual join code",
                 "name" : "the 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]
             }