Auth
Sign up 1
Get Started
API Documentation
Auth
Sign up 1
Create a new user account.
POST
/
api
/
auth
/
signup
curl --location --request POST 'http://localhost:3005/api/auth/signup' \
--header 'Accept: application/json' \
--data '{
"email": "kiran@example.com",
"password: "secret-password",
"firstName": "John",
"lastName": "Doe"
}'
{
"data": {
"id": 10,
"email": "kiran@example.com",
"firstName": "John",
"lastName": "Doe",
"createdAt": "2023-07-02T18:03:23.658Z",
"updatedAt": "2023-07-02T18:03:23.658Z"
}
}
Body
Email address of the user.
Password of the user.
First name of the user.
Last name of the user.
curl --location --request POST 'http://localhost:3005/api/auth/signup' \
--header 'Accept: application/json' \
--data '{
"email": "kiran@example.com",
"password: "secret-password",
"firstName": "John",
"lastName": "Doe"
}'
{
"data": {
"id": 10,
"email": "kiran@example.com",
"firstName": "John",
"lastName": "Doe",
"createdAt": "2023-07-02T18:03:23.658Z",
"updatedAt": "2023-07-02T18:03:23.658Z"
}
}
curl --location --request POST 'http://localhost:3005/api/auth/signup' \
--header 'Accept: application/json' \
--data '{
"email": "kiran@example.com",
"password: "secret-password",
"firstName": "John",
"lastName": "Doe"
}'
{
"data": {
"id": 10,
"email": "kiran@example.com",
"firstName": "John",
"lastName": "Doe",
"createdAt": "2023-07-02T18:03:23.658Z",
"updatedAt": "2023-07-02T18:03:23.658Z"
}
}