curl --location --request POST 'http://localhost:8000/api/auth/register/' \
--header 'Content-Type: application/json' \
--data-raw '{
"nickname": "string",
"email": "string",
"password": "string"
}'
{
"result": true,
"message": "User created successfully.",
"data": [
{
"id": 7,
"nickname": "Clay Stoltenberg",
"email": "Constantin_Tillman@yahoo.com"
}
]
}