{"info":{"_postman_id":"f5a3e2d0-f9d8-498d-9ac3-ddb4191b0306","name":"Student Management System","description":"<html><head></head><body><p><strong>Student Management System</strong> is a basic CRUD Restful API created using Java, Spring Boot, JDBC Template, and MySQL.</p>\n<p>The detailed explanation for the API is available at: <a href=\"https://medium.com/@gauravshah97/crud-operations-using-spring-boot-jdbctemplate-and-mysql-aa9cc7855025\">medium.com/@GauravShah</a></p>\n<p>The <strong>Entire code</strong> of the project is available at: <a href=\"https://github.com/GauravShah97/StudentManagement\">github.com/GauravShah97</a></p>\n<p>For more <strong>Java and Spring-Boot</strong>-related projects, check out my profile at: <a href=\"https://medium.com/@gauravshah97\">medium.com/@gauravshah97</a></p>\n<p>Reach me out at- <a href=\"https://www.linkedin.com/in/gauravshah97/\">LinkedIn/gauravshah97</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"22576021","collectionId":"f5a3e2d0-f9d8-498d-9ac3-ddb4191b0306","publishedId":"VUjFrTXy","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-08-04T07:33:41.000Z"},"item":[{"name":"Get All Students","id":"2e99adc0-2fe4-48df-a1c4-dd33c629ea67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/api/students","description":"<p><strong>Get All Students request</strong> enables us to get complete details of all the Students in the organization.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","students"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"7bbdc79e-20df-44a9-9a38-ba166e57de4b","name":"Example: Get All Students","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/api/students"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"id\": 1,\r\n        \"name\": \"Gaurav\",\r\n        \"contactNumber\": 123456,\r\n        \"address\": \"India\"\r\n    },\r\n    {\r\n        \"id\": 2,\r\n        \"name\": \"Harsh\",\r\n        \"contactNumber\": 12345,\r\n        \"address\": \"India\"\r\n    }\r\n]"}],"_postman_id":"2e99adc0-2fe4-48df-a1c4-dd33c629ea67"},{"name":"Add a Student","id":"a56dd06f-111b-4ffb-8adc-994bfbdd01ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3,\r\n    \"name\": \"Abhishek\",\r\n    \"contactNumber\": 56789,\r\n    \"address\": \"India\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8000/api/student","description":"<p><strong>Add a Student request</strong> enables us to add a Student to the database.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","student"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2605184b-91ba-42f2-a104-4717d983532a","name":"Example: Add a Student","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3,\r\n    \"name\": \"Abhishek\",\r\n    \"contactNumber\": 56789,\r\n    \"address\": \"India\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8000/api/student"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"a56dd06f-111b-4ffb-8adc-994bfbdd01ea"},{"name":"Get Student By ID","id":"7aafe030-e268-4aa0-b69a-93fca2b6248e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/api/student/3","description":"<p><strong>Get Student by ID request</strong> enables us to get complete details of a particular Student in the organization.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","student","3"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"80c1b588-c4c4-44ee-ab5b-3ca62b02a0fc","name":"Example: Get Student By ID","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/api/student/3"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": 3,\r\n    \"name\": \"Abhishek\",\r\n    \"contactNumber\": 56789,\r\n    \"address\": \"India\"\r\n}"}],"_postman_id":"7aafe030-e268-4aa0-b69a-93fca2b6248e"},{"name":"Update a Student","id":"e6e608ad-2442-4e0d-aa69-d04e5ca20f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3,\r\n    \"name\": \"Abhishek\",\r\n    \"contactNumber\": 1234567,\r\n    \"address\": \"India\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8000/api/student","description":"<p><strong>Update a Student request</strong> enables us to update the details of a particular Student.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","student"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"6a7ddadb-3596-4368-85ec-78a355c09fd7","name":"Update a Student","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3,\r\n    \"name\": \"Abhishek\",\r\n    \"contactNumber\": 1234567,\r\n    \"address\": \"India\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8000/api/student"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"e6e608ad-2442-4e0d-aa69-d04e5ca20f6f"},{"name":"Delete a Student By ID","id":"83cef98b-51f1-4ef7-9e3b-5f3b59676405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8000/api/student/3","description":"<p><strong>Delete a Student using Student ID request</strong> enables us to delete a particular Student from an Organization.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","student","3"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"169e9702-5b90-4041-972b-ad1c0d2fb6eb","name":"Delete a Student By ID","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8000/api/student/3"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"83cef98b-51f1-4ef7-9e3b-5f3b59676405"}]}