Register User
curl --request POST \
--url https://api.example.com/api/v1/users/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"password": "<string>",
"full_name": "<string>",
"accept_terms": false
}
'{
"email": "jsmith@example.com",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_active": true,
"is_superuser": false,
"is_paid": false,
"full_name": "<string>",
"role": "standard",
"created_at": "2023-11-07T05:31:56Z"
}Endpoints
Register User
Create new user without the need to be logged in.
POST
/
api
/
v1
/
users
/
signup
Register User
curl --request POST \
--url https://api.example.com/api/v1/users/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"password": "<string>",
"full_name": "<string>",
"accept_terms": false
}
'{
"email": "jsmith@example.com",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_active": true,
"is_superuser": false,
"is_paid": false,
"full_name": "<string>",
"role": "standard",
"created_at": "2023-11-07T05:31:56Z"
}Body
application/json
Response
Successful Response
Maximum string length:
255Maximum string length:
255Role controls non-admin account policies
Available options:
standard, sandbox Last modified on May 25, 2026
โI