cURL
curl --request POST \ --url https://api.example.com/api/auth/signup \ --header 'Content-Type: application/json' \ --data ' { "firstName": "John", "lastName": "Doe", "email": "[email protected]", "password": "password123" } '
User first name
"John"
User last name
"Doe"
User email address
"[email protected]"
User password
"password123"
Sign-up initiated. Check email for confirmation.