Skip to content

Commit 30fd414

Browse files
authored
Update README.md
1 parent 87e9fab commit 30fd414

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ The application will start and be available at http://localhost:8000.
3333

3434
## API Endpoints
3535

36-
- Retrieve a list of users:
36+
### Retrieve a list of users:
3737

3838
```http
3939
GET /users
4040
```
4141

4242
Returns a list of all users in the system.
4343

44-
- Retrieve details for a specific user:
44+
### Retrieve details for a specific user:
4545

4646
```http
4747
GET /users/{user_id}
4848
```
4949
Returns details for a specific user with the given user_id.
5050

51-
- Add a new user
51+
### Add a new user
5252

5353
```http
5454
POST /users
@@ -60,7 +60,7 @@ Adds a new user to the system. The request body should include a JSON object wit
6060
- `email` (string, required): the email address of the user
6161
- `password` (string, required): the password for the user
6262

63-
- Update an existing user
63+
### Update an existing user
6464
```http
6565
PUT /users/{user_id}
6666
```
@@ -71,7 +71,7 @@ Updates an existing user with the given user_id. The request body should include
7171
- `email` (string, optional): the new email address for the user
7272
- `password` (string, optional): the new password for the user
7373

74-
- Delete a user
74+
### Delete a user
7575

7676
```http
7777
DELETE /users/{user_id}

0 commit comments

Comments
 (0)