signIn

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

Method to sign in the Neutron's system

Return

the result of the request as String

Parameters

payload

: payload of the request


                             {
                                 "email": "the email of the user", -> [String]
                                 "password": "the password of the user" -> [String]
                             }