User Registration Step 2(Read)

GET /user/registration/step2/

Use the GET /user/registration/step2/ endpoint to retrieve the second step of user registration details.


Parameters

This endpoint does not require any parameters.


Responses

Code

Description

200

The request was successful.


Example Response

{
  "id": "12345",
  "first_name": "John",
  "last_name": "Doe",
  "email": "johndoe@example.com",
  "account_type": "Premium",
  "date_of_birth": "1990-01-01",
  "phone_number": "+1234567890",
  "is_available": "true"
}

Response Fields

Field

Type

Description

id

String

Unique identifier for the user.

first_name

String (required)

The first name of the user.

last_name

String (required)

The last name of the user.

email

String (nullable)

The email address of the user.

account_type

String (nullable)

The type of account the user has (e.g., Basic, Premium).

date_of_birth

String (date)

The date of birth of the user.

phone_number

String

The user's phone number.

is_available

String (readonly)

Indicates if the user is available. This field is read-only

Last updated