Complete the code to define the endpoint for retrieving all users.
GET /[1]The endpoint should use the plural form users to represent the collection of user resources.
Complete the code to define the endpoint for retrieving a single user by ID.
GET /users/[1]The endpoint should use a path parameter {id} to specify the user ID dynamically.
Fix the error in the endpoint for creating a new user.
POST /[1]To create a new user, the endpoint should be the plural resource name users without an ID.
Fill both blanks to define the endpoint for updating a user's profile.
PUT /[1]/[2]/profile
The endpoint uses the plural resource users and a path parameter {userId} to specify which user to update.
Fill all three blanks to define the endpoint for deleting a specific order item.
DELETE /[1]/[2]/[3]
The endpoint uses plural orders, a path parameter {orderId}, and a path parameter {itemId} to delete a specific item in an order.