POST
/
auth
/
signup
curl --request POST \
--url https://{deploymentHost}/auth/signup \
--header 'Content-Type: application/json' \
--data '{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"password": "SecurePass123!"
}'
{
"status": 200,
"message": "",
"data": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [
{
"id": "signup_123456789",
"email": "john.doe@example.com",
"username": "johndoe",
"current_step": "verify_email",
"created_at": "2024-01-01T12:00:00Z"
}
],
"active_signin": null
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [
{
"id": "signup_123456789",
"email": "john.doe@example.com",
"username": "johndoe",
"current_step": "verify_email",
"created_at": "2024-01-01T12:00:00Z"
}
],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Sign-up attempt created successfully

The response is of type object.