{"info":{"_postman_id":"66ca8e88-f643-401a-966a-4bccb9ce816f","name":"Board Project","description":"<html><head></head><body><h2 id=\"요구사항\"><strong>요구사항</strong></h2>\n<p><strong>게시글 작성 기능</strong></p>\n<ul>\n<li><code>제목</code>, <code>작성자명</code>, <code>비밀번호</code>, <code>작성 내용</code>, <code>작성일</code>을 저장할 수 있습니다.</li>\n<li>저장된 게시글의 정보를 반환 받아 확인할 수 있습니다.<ul>\n<li>반환 받은 게시글의 정보에 <code>비밀번호</code>는 제외 되어있습니다.</li>\n</ul>\n</li>\n</ul>\n<p><strong>선택한 게시글 조회 기능</strong></p>\n<ul>\n<li>선택한 게시글의 정보를 조회할 수 있습니다.<ul>\n<li>반환 받은 게시글의 정보에 <code>비밀번호</code>는 제외 되어있습니다.</li>\n</ul>\n</li>\n</ul>\n<p><strong>게시글 목록 조회 기능</strong></p>\n<ul>\n<li>등록된 게시글 전체를 조회할 수 있습니다.<ul>\n<li>반환 받은 게시글의 정보에 <code>비밀번호</code>는 제외 되어있습니다.</li>\n</ul>\n</li>\n<li>조회된 게시글 목록은 작성일 기준 내림차순으로 정렬 되어있습니다.</li>\n</ul>\n<p><strong>선택한 게시글 수정 기능</strong></p>\n<ul>\n<li>선택한 게시글의 <code>제목</code>, <code>작성자명</code>, <code>작성 내용</code>을 수정할 수 있습니다.<ul>\n<li>서버에 게시글 수정을 요청할 때 <code>비밀번호</code>를 함께 전달합니다.</li>\n<li>선택한 게시글의 <code>비밀번호</code>와 요청할 때 함께 보낸 <code>비밀번호</code>가 일치할 경우에만 수정이 가능합니다.</li>\n</ul>\n</li>\n<li>수정된 게시글의 정보를 반환 받아 확인할 수 있습니다.<ul>\n<li>반환 받은 게시글의 정보에 <code>비밀번호</code>는 제외 되어있습니다.</li>\n</ul>\n</li>\n</ul>\n<p><strong>선택한 게시글 삭제 기능</strong></p>\n<ul>\n<li>선택한 게시글을 삭제할 수 있습니다.<ul>\n<li>서버에 게시글 삭제를 요청할 때 <code>비밀번호</code>를 함께 전달합니다.</li>\n<li>선택한 게시글의 <code>비밀번호</code>와 요청할 때 함께 보낸 <code>비밀번호</code>가 일치할 경우에만 삭제가 가능합니다.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"추가-요구사항\">추가 요구사항</h2>\n<p>선택한 게시글 수정 및 삭제 요청 시 비밀번호가 일치하지 않을 경우 API 요청 실패(예외상황)에 대해 판단할 수 있는 Status Code, Error 메시지등의 정보를 반환합니다.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"30858040","collectionId":"66ca8e88-f643-401a-966a-4bccb9ce816f","publishedId":"2s9YXfaNrc","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-11-06T01:13:10.000Z"},"item":[{"name":"test Input","item":[{"name":"create board","id":"926bd80a-f900-4a95-b0fd-f90d4555b7d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"testtitle\",\r\n    \"userName\": \"user1\",\r\n    \"pw\": \"1234\",\r\n    \"contents\": \"test입니다\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards","description":"<p>createBoard</p>\n<p>Input body</p>\n<ul>\n<li><p>title: title</p>\n</li>\n<li><p>name: writer</p>\n</li>\n<li><p>password: password setting have the right to delete and modifications</p>\n</li>\n<li><p>contents: board contents (Nullable)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["api","boards"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bd97a255-4cfc-446b-ace3-f375cca36a4a","name":"createBoardTest1","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"createtitle\",\r\n    \"userName\": \"user1\",\r\n    \"pw\": \"1\",\r\n    \"contents\": \"create생성1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 03:24:54 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"title\": \"createtitle\",\n    \"userName\": \"user1\",\n    \"contents\": \"create생성1\",\n    \"createdAt\": \"2023-11-06T12:24:54.7946754\",\n    \"bnum\": 1\n}"},{"id":"25f66382-23ab-4a85-be65-6ca8136b3bcf","name":"createBoardTest2","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"createtitle2\",\r\n    \"userName\": \"user2\",\r\n    \"pw\": \"2\",\r\n    \"contents\": \"create생성2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 03:26:14 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"title\": \"createtitle2\",\n    \"userName\": \"user2\",\n    \"contents\": \"create생성2\",\n    \"createdAt\": \"2023-11-06T12:26:14.1108362\",\n    \"bnum\": 2\n}"},{"id":"35066424-bc8b-4ea5-9590-17ccece673d7","name":"createException","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userName\": \"user3\",\r\n    \"pw\": \"3\",\r\n    \"contents\": \"예외 테스트\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Content-Type","value":"text/plain;charset=UTF-8"},{"key":"Content-Length","value":"26"},{"key":"Date","value":"Mon, 06 Nov 2023 03:32:18 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"잘못된 양식입니다."}],"_postman_id":"926bd80a-f900-4a95-b0fd-f90d4555b7d0"},{"name":"get list","id":"3a6432e6-4a15-44a8-8359-dd3d8e5a55f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards","description":"<p>getBoards: Check the list of posts</p>\n","urlObject":{"protocol":"http","port":"8080","path":["api","boards"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f83cbc71-bebf-4520-932b-afb1db7b1580","name":"getBoards","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 03:28:49 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"title\": \"createtitle2\",\n        \"userName\": \"user2\",\n        \"contents\": \"create생성2\",\n        \"createdAt\": \"2023-11-06T12:26:14.110836\",\n        \"bnum\": 2\n    },\n    {\n        \"title\": \"createtitle\",\n        \"userName\": \"user1\",\n        \"contents\": \"create생성1\",\n        \"createdAt\": \"2023-11-06T12:24:54.794675\",\n        \"bnum\": 1\n    }\n]"}],"_postman_id":"3a6432e6-4a15-44a8-8359-dd3d8e5a55f3"},{"name":"get select","id":"bae259d9-bc95-4d0b-8f34-c71f3c499d32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1","description":"<p>selectGetBoard: View selected posts</p>\n","urlObject":{"protocol":"http","port":"8080","path":["api","boards","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"5489efd1-d702-4b96-b26e-f8a24c4c19c2","name":"selectGetBoard","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 03:29:16 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"title\": \"createtitle\",\n    \"userName\": \"user1\",\n    \"contents\": \"create생성1\",\n    \"createdAt\": \"2023-11-06T12:24:54.794675\",\n    \"bnum\": 1\n}"},{"id":"312da693-ce58-47fa-a77f-f6eb9de8258a","name":"selectGetBoardException","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/3"},"status":"Not Found","code":404,"_postman_previewlanguage":"plain","header":[{"key":"Content-Type","value":"text/plain;charset=UTF-8"},{"key":"Content-Length","value":"39"},{"key":"Date","value":"Mon, 06 Nov 2023 00:58:49 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"찾으시는 게시글이 없습니다."}],"_postman_id":"bae259d9-bc95-4d0b-8f34-c71f3c499d32"},{"name":"update board","id":"fe3dfc4d-3bf5-4282-944e-07dfbed618fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"testtitle\",\r\n    \"userName\": \"user1\",\r\n    \"pw\": \"1234\",\r\n    \"contents\": \"내용수정Test\" \r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1","description":"<p>updateBoards</p>\n<p>Input body</p>\n<ul>\n<li>title: Type what you want to modify</li>\n<li>name: Type what you want to modify</li>\n<li>password: Enter the correct password</li>\n<li>contents: Type what you want to modify</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["api","boards","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"48adcb6d-f8c0-4117-b5c8-ce7e5cb2704d","name":"updateBoard","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"updatetile1\",\r\n    \"userName\": \"user1\",\r\n    \"pw\": \"1\",\r\n    \"contents\": \"수정됐어요~\" \r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 03:30:03 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"title\": \"updatetile1\",\n    \"userName\": \"user1\",\n    \"contents\": \"수정됐어요~\",\n    \"createdAt\": \"2023-11-06T12:24:54.794675\",\n    \"bnum\": 1\n}"},{"id":"db9db890-5a8f-44fe-b684-4e20b51636a2","name":"updateBoardException","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"updatetitle1\",\r\n    \"userName\": \"user1\",\r\n    \"pw\": \"123\",\r\n    \"contents\": \"수정됐어요~\" \r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Content-Type","value":"text/plain;charset=UTF-8"},{"key":"Content-Length","value":"32"},{"key":"Date","value":"Mon, 06 Nov 2023 03:30:42 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"비밀번호가 틀렸습니다."}],"_postman_id":"fe3dfc4d-3bf5-4282-944e-07dfbed618fc"},{"name":"delete board","id":"e53fd43b-d1f8-401c-9053-0fe2ceaf6fc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/2/123","description":"<p>deleteBoard</p>\n<p>Enter the correct post number and password</p>\n","urlObject":{"protocol":"http","port":"8080","path":["api","boards","2","123"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"6a6c7b0a-5bdb-4e7d-85b9-4eb4e67ae052","name":"deleteBoard","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/2/2"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Content-Type","value":"text/plain;charset=UTF-8"},{"key":"Content-Length","value":"70"},{"key":"Date","value":"Mon, 06 Nov 2023 03:31:13 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"작성하신 2 번째 게시글이 정상적으로 삭제됐습니다."},{"id":"acfd8c76-acb1-4cb9-a8f6-e6556793547d","name":"deleteBoardException","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/api/boards/1/12"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Content-Type","value":"text/plain;charset=UTF-8"},{"key":"Content-Length","value":"32"},{"key":"Date","value":"Mon, 06 Nov 2023 01:10:38 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"비밀번호가 틀렸습니다."}],"_postman_id":"e53fd43b-d1f8-401c-9053-0fe2ceaf6fc4"}],"id":"bc9d3c9b-454f-4e5d-9cb2-a46ae8d80e41","description":"<p>게시글 API</p>\n<ul>\n<li>게시글 생성 API</li>\n<li>게시글 목록 조회 API</li>\n<li>작성한 게시글 선택 조회 API</li>\n<li>게시글 수정 API</li>\n<li>게시글 삭제 API</li>\n</ul>\n","_postman_id":"bc9d3c9b-454f-4e5d-9cb2-a46ae8d80e41"}]}