curl --request POST \
--url https://api.example.com/auth/register \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"password": "<string>",
"is_active": true,
"is_superuser": false,
"is_verified": false,
"role": "basic",
"first_name": "<string>",
"last_name": "<string>"
}
'