GET /api/student/?id=1
and the response is:
{
"id": 1,
"name": "Aniket Sarkar",
"standerd": "Ten",
"roll_no": 56,
"gender": "M",
"dob": "2021-08-10",
"created_at": "2021-08-14T09:35:55.239Z",
"is_active": true
}
GET /api/student/
and the response is:
[
{
"id": 1,
"name": "Aniket Sarkar",
"standerd": "Ten",
"roll_no": 56,
"gender": "M",
"dob": "2021-08-10",
"created_at": "2021-08-14T09:35:55.239Z",
"is_active": true
},
{
"id": 2,
"name": "Aditi Singh",
"standerd": "Ten",
"roll_no": 1,
"gender": "M",
"dob": "2021-08-10",
"created_at": "2021-08-14T09:36:59.692Z",
"is_active": true
}
]
POST /api/student/
and the response is:
{
"id": 1,
"name": "Aniket Sarkar",
"standerd": "Ten",
"roll_no": 56,
"gender": "M",
"dob": "2021-08-10",
"created_at": "2021-08-14T09:35:55.239Z",
"is_active": true
}
PUT /api/student/?id=1
and the response is:
{
"id": 1,
"name": "Aniket Sarkar",
"standerd": "Twelve",
"roll_no": 57,
"gender": "M",
"dob": "2021-08-10",
"created_at": "2021-08-14T09:35:55.239Z",
"is_active": true
}
DELETE /api/student/?id=1
and the response is:
204 - Content not found