PearPear

Register new user with email and password

Create an unverified user account with email and password. A verification email will be sent.

POST
/auth/register/emailpass

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Email registration request

Response Body

curl -X POST "https://example.com/auth/register/emailpass" \  -H "Content-Type: application/json" \  -d '{    "email": "trader@example.com",    "password": "stringst"  }'
Empty