cURL
curl --request POST \ --url https://api.app.shinzo.ai/auth/create_user \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "password": "<string>" } '
Create a new user account on the Shinzo Platform.
curl -X POST https://api.app.shinzo.ai/auth/create_user \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com", "password": "securepassword123" }'
{ "uuid": "usr_abc123def456", "email": "user@example.com", "message": "User created successfully. Please check your email to verify your account." }
201
400
409