{"info":{"_postman_id":"913e8302-d308-4654-a30b-f3c874e36756","name":"reply","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"44617139","collectionId":"913e8302-d308-4654-a30b-f3c874e36756","publishedId":"2sB2qcD1JG","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-05-26T03:02:45.000Z"},"item":[{"name":"save reply","id":"b84a1ffa-0e92-47a3-88ab-aec5436604b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"scheduleId\" : 1,\r\n    \"contents\" : \"댓글 내용\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/reply","description":"<h3 id=\"댓글-작성-api\">댓글 작성 API</h3>\n<ul>\n<li><p>Method : POST</p>\n</li>\n<li><p>URL : <a href=\"http://localhost:8080/schedule/%7Bid%7D/reply\">http://localhost:8080/schedule/{id}/reply</a></p>\n</li>\n<li><p>id : 일정 ID 값, @PathVariable 사용 (필수)</p>\n</li>\n<li><p>로그인 후, 일정 작성 후 댓글 작성 가능</p>\n</li>\n<li><p>성공 시 201</p>\n</li>\n<li><p>실패 시 400</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Request Body\n{\n  내용 : String (필수) 길이 100\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Request Body Sample\n{\n    \"contents\" : \"댓글 내용\"\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Response Body \n{\n  댓글 ID : Long,\n  일정 ID : Long,\n  유저 ID : Long,\n  내용 : String,\n  작성일 : LocalDate(yyyy-MM-dd),\n  수정일 : LocalDate(yyyy-MM-dd),\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Response Body Sample\n{\n  \"replyId\" : 1,\n  \"scheduleId\" : 1,\n  \"userId\" : 1,\n  \"contents\" : \"댓글 내용\",\n  \"createAt\" : \"2025-05-22\",\n  \"updateAt\" : \"2025-05-22\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["reply"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"b84a1ffa-0e92-47a3-88ab-aec5436604b9"},{"name":"select reply","id":"04f4fb62-40c0-4e5f-9d3d-57b82043eaec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/reply/1","description":"<h3 id=\"댓글-조회-api\">댓글 조회 API</h3>\n<ul>\n<li><p>Method : GET</p>\n</li>\n<li><p>URL : <a href=\"http://localhost:8080/reply/%7Bid%7D\">http://localhost:8080/reply/{id}</a></p>\n</li>\n<li><p>id : replyId 값 , @PathVariable 사용 (필수)</p>\n</li>\n<li><p>성공 시 200</p>\n</li>\n<li><p>실패 시 400</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Response Body \n{\n  댓글 ID : Long,\n  일정 ID : Long,\n  유저 ID : Long,\n  내용 : String,\n  작성일 : LocalDate(yyyy-MM-dd),\n  수정일 : LocalDate(yyyy-MM-dd),\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Response Body Sample\n{\n  \"replyId\" : 1,\n  \"scheduleId\" : 1,\n  \"userId\" : 1,\n  \"contents\" : \"댓글 내용\",\n  \"createAt\" : \"2025-05-22\",\n  \"updateAt\" : \"2025-05-22\"\n}\n\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["reply","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"04f4fb62-40c0-4e5f-9d3d-57b82043eaec"},{"name":"update reply","id":"3c8b2f6f-747a-4d45-a54a-fbf6bce13ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"contents\" : \"수정된 내용\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/reply/1","description":"<h3 id=\"댓글-수정-api\">댓글 수정 API</h3>\n<ul>\n<li><p>Method : PATCH</p>\n</li>\n<li><p>URL : <a href=\"http://localhost:8080/reply/%7Bid%7D\">http://localhost:8080/reply/{id}</a></p>\n</li>\n<li><p>수정할 내용 작성</p>\n</li>\n<li><p>성공 시 200</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Request Body\n{\n  내용 : String (필수) 길이 100\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Request Body Sample\n{\n    \"contents\" : \"수정된 내용\"\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Body \n{\n  댓글 ID : Long,\n  일정 ID : Long,\n  유저 ID : Long,\n  내용 : String,\n  작성일 : LocalDate(yyyy-MM-dd),\n  수정일 : LocalDate(yyyy-MM-dd),\n}\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Response Body Sample\n{\n    \"replyId\": 1,\n    \"scheduleId\": 1,\n    \"userId\": 1,\n    \"contents\": \"수정된 내용\",\n    \"createAt\": \"2025-05-22\",\n    \"updateAt\": \"2025-05-22\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["reply","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c8b2f6f-747a-4d45-a54a-fbf6bce13ab2"},{"name":"delete reply","id":"c3014c17-d4c3-457f-8443-7b4c3ca2e365","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:8080/reply/1","description":"<h3 id=\"댓글-삭제-api\">댓글 삭제 API</h3>\n<ul>\n<li><p>Method : DELETE</p>\n</li>\n<li><p>URL : <a href=\"http://localhost:8080/reply/%7Bid%7D\">http://localhost:8080/reply/{id}</a></p>\n</li>\n<li><p>@PathVariable 사용 (필수) , ReplyId 값</p>\n</li>\n<li><p>성공 시 204</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["reply","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3014c17-d4c3-457f-8443-7b4c3ca2e365"}]}