Student Management API

Token:

šŸ”§ Test APIs directly

Response

POST /api/login
Request body
{"email": "student@gmail.com", "password": "password123"}

Try it

GET /api/users

Try it

GET /api/user/:id

Try it

POST /api/users
Request body
{"name": "New User", "email": "new@gmail.com", "password": "pass123"}

Try it

PUT /api/user/:id
Request body (full update)
{"name": "Updated Name", "email": "updated@gmail.com"}

Try it

PATCH /api/user/:id
Request body (partial update)
{"name": "New Name"}

Try it

DELETE /api/user/:id

Try it