curl --request POST \
--url https://use.hoop.dev/api/localauth/register \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"name": "<string>",
"password": "<string>"
}'
{
"message": "the error description"
}
It registers a new user in the system with the provided email and password. Additionall users are only registered when they are invited by an existing admin user.
curl --request POST \
--url https://use.hoop.dev/api/localauth/register \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"name": "<string>",
"password": "<string>"
}'
{
"message": "the error description"
}
The access token generated after successful registration
The request body resource
The body is of type object
.
Created
The response is of type object
.
Was this page helpful?