Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url http://localhost:8000/api/v1/users/authorization/register \ --header 'Content-Type: application/json' \ --data ' { "email": "jsmith@example.com", "password": "<string>", "password_confirm": "<string>", "first_name": "<string>", "last_name": "<string>", "phone_number": "<string>", "google_recaptcha_response": "<string>" } '
{ "id": 123, "email": "jsmith@example.com", "profile": { "first_name": "<string>", "last_name": "<string>", "phone_number": "<string>" }, "access_token": "<string>", "is_google_recaptcha_response_valid": true, "token_type": "bearer" }
Register a new user using the data from the UserCreateSchema.
UserCreateSchema
The schema for creating a user.
9 - 15
Successful Response
The schema for a logged-in user.
The base schema for a profile.
Show child attributes