{"info":{"_postman_id":"a19d190c-fcad-43ae-82af-e032087db24e","name":"일정관리 앱 프로젝트","description":"<html><head></head><body><p>일정 생성, 조회, 수정, 삭제 기능을 가진 프로그램</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"44674536","collectionId":"a19d190c-fcad-43ae-82af-e032087db24e","publishedId":"2sB2qUmj39","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-05-14T02:37:49.000Z"},"item":[{"name":"일정관리 API","item":[{"name":"일정관리일정생성","id":"54a46190-f85c-4784-8963-fe4fce3505fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userName\" : \"엔지니어\",\r\n    \"password\" : \"1234\",\r\n    \"title\" : \"비밀번호 \",\r\n    \"contents\" : \" 다재다능\"\r\n   \r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos","description":"<p>유저 일정 생성</p>\n<ul>\n<li><p>사용자 명, 비밀번호, 제목, 내용을 입력하면 일정이 생성됩니다.</p>\n</li>\n<li><p>입력받은 대로 응답함</p>\n</li>\n</ul>\n","urlObject":{"port":"8080","path":["todos"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"25ae8492-9331-4e13-95d0-1942c2ae01ee","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userName\" : \"엔지니어\",\r\n    \"password\" : \"1234\",\r\n    \"title\" : \"비밀번호 \",\r\n    \"contents\" : \" 다재다능\"\r\n   \r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 14 May 2025 01:31:14 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 8,\n    \"userName\": \"엔지니어\",\n    \"title\": \"비밀번호 \",\n    \"contents\": \" 다재다능\",\n    \"modifiedAt\": \"2025-05-14\"\n}"}],"_postman_id":"54a46190-f85c-4784-8963-fe4fce3505fc"},{"name":"일정관리전체조회","id":"8f146d08-50ae-4262-aa28-e7be73018226","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:8080/todos","description":"<p>현재 DB에 저장되어 있는 모든 값들을 JSON 형태로 불러옴</p>\n","urlObject":{"port":"8080","path":["todos"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f38b6aea-d765-44db-848e-a1cc93bf999a","name":"New Request","originalRequest":{"method":"GET","header":[],"url":"localhost:8080/todos"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 14 May 2025 01:31:26 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 8,\n        \"userName\": \"엔지니어\",\n        \"title\": \"비밀번호 \",\n        \"contents\": \" 다재다능\",\n        \"modifiedAt\": \"2025-05-14\"\n    },\n    {\n        \"id\": 5,\n        \"userName\": \"수정수정수정\",\n        \"title\": \"오늘 늦게 잔다.\",\n        \"contents\": \"수정1수정2수정아\",\n        \"modifiedAt\": \"2025-05-13\"\n    },\n    {\n        \"id\": 7,\n        \"userName\": \"윤하\",\n        \"title\": \"비밀번호 \",\n        \"contents\": \" 고우시다\",\n        \"modifiedAt\": \"2025-05-13\"\n    },\n    {\n        \"id\": 6,\n        \"userName\": \"문정호\",\n        \"title\": \"오늘 지각 \",\n        \"contents\": \" 더 자고 싶다.\",\n        \"modifiedAt\": \"2025-05-13\"\n    }\n]"}],"_postman_id":"8f146d08-50ae-4262-aa28-e7be73018226"},{"name":"일정관리단건조회API","id":"fd209eca-4339-4825-9dec-4e3ef9052fa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos/5","description":"<p>id값을 입력받으면 해당 id와 일치하는 값만 JSON 형태로 응답</p>\n","urlObject":{"port":"8080","path":["todos","5"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd209eca-4339-4825-9dec-4e3ef9052fa6"},{"name":"일정관리삭제API","id":"7ac9a78d-193f-41a9-89c5-221cff360860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\" : \"1111\"\r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos/5","description":"<ul>\n<li><p>id값을 입력받으면 해당 id와 일치하는 행 삭제</p>\n</li>\n<li><p>요청을 보낼 때 해당 id가 가진 비밀번호 또한 보내게 됌</p>\n</li>\n<li><p>비밀번호가 일치하지 않으면 삭제가 이루어지지 않음</p>\n</li>\n</ul>\n","urlObject":{"port":"8080","path":["todos","5"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"c668eb75-2646-482f-9c62-1490de2f4b7c","name":"New Request","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\" : \"1111\"\r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos/5"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Content-Length","value":"0"},{"key":"Date","value":"Wed, 14 May 2025 01:33:59 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7ac9a78d-193f-41a9-89c5-221cff360860"},{"name":"일정관리단건수정API","id":"e3911b63-8cc0-4c45-9372-0467437dd0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userName\": \"패스해패스\",\r\n\"password\" : \"1111\",\r\n\"contents\" : \"손흥민슛\"\r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos/6","description":"<ul>\n<li><p>id값을 입력받으면 해당 id와 일치하는 행 수정</p>\n</li>\n<li><p>요청을 보낼 때 해당 id가 가진 비밀번호 또한 보내게 됌</p>\n</li>\n<li><p>비밀번호가 일치하지 않으면 수정이 이루어지지 않음</p>\n</li>\n<li><p>수정할 내용은 userName과 contents만 허용</p>\n</li>\n<li><p>userName과 contents 중 하나는 필수로 보내야 함.</p>\n</li>\n</ul>\n","urlObject":{"port":"8080","path":["todos","6"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"71c7801d-adcb-410d-9ff3-d199e88a2f1f","name":"New Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userName\": \"패스해패스\",\r\n\"password\" : \"1111\",\r\n\"contents\" : \"손흥민슛\"\r\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8080/todos/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 14 May 2025 01:33:13 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 6,\n    \"userName\": \"패스해패스\",\n    \"title\": \"오늘 지각 \",\n    \"contents\": \"손흥민슛\",\n    \"modifiedAt\": \"2025-05-14\"\n}"}],"_postman_id":"e3911b63-8cc0-4c45-9372-0467437dd0b6"}],"id":"ff2ac1a3-348f-48cf-88ee-488be38c4d92","description":"<p>일정관리 프로그램과 통신할 수 있는 API 모음</p>\n","_postman_id":"ff2ac1a3-348f-48cf-88ee-488be38c4d92"},{"name":"New Request","id":"1e8e30fc-687e-4b49-9d6a-1d83c6da6583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"1e8e30fc-687e-4b49-9d6a-1d83c6da6583"}]}