File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
3939GET /users
4040```
4141
4242Returns 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
4747GET /users/{user_id}
4848```
4949Returns details for a specific user with the given user_id.
5050
51- - Add a new user
51+ ### Add a new user
5252
5353``` http
5454POST /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
6565PUT /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
7777DELETE /users/{user_id}
You can’t perform that action at this time.
0 commit comments