> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/user-registration-step-2-read.md).

# User Registration Step 2(Read)

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**

```json
{
  "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 |
