0% found this document useful (0 votes)
1 views1 page

Plan

The document outlines a simple REST API for user management. It includes endpoints for retrieving all users, fetching a specific user by ID, creating a new user, and editing an existing user. The methods specified are GET, POST, and PATCH.

Uploaded by

maxsinghparihar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views1 page

Plan

The document outlines a simple REST API for user management. It includes endpoints for retrieving all users, fetching a specific user by ID, creating a new user, and editing an existing user. The methods specified are GET, POST, and PATCH.

Uploaded by

maxsinghparihar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

//Rest API

GET /USERS - GET ALL USERS

GET /USERS/1 - GET USER WITH ID 1

POST /USER - Create New User

Patch /USER/1 - Edit user with id 1

You might also like