Aller au contenu

Register

POST
/api/auth/register
curl --request POST \
--url https://example.com/api/auth/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "password": "example", "displayName": "example" }'
Media type application/json
object
email
string
nullable
password
string
nullable
displayName
string
nullable
Example generated
{
"email": "example",
"password": "example",
"displayName": "example"
}

OK