Account.postman_collection.json 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. {
  2. "info": {
  3. "_postman_id": "53c4f62d-f548-423a-9fdd-0874bc879a41",
  4. "name": "Account",
  5. "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
  6. "_exporter_id": "40701166"
  7. },
  8. "item": [
  9. {
  10. "name": "이메일",
  11. "item": [
  12. {
  13. "name": "이메일 변경",
  14. "request": {
  15. "method": "POST",
  16. "header": [],
  17. "body": {
  18. "mode": "raw",
  19. "raw": "{\n \"NewEmail\": \"newemail@example.com\"\n}",
  20. "options": {
  21. "raw": {
  22. "language": "json"
  23. }
  24. }
  25. },
  26. "url": {
  27. "raw": "{{baseUrl}}/api/mypage/email",
  28. "host": [
  29. "{{baseUrl}}"
  30. ],
  31. "path": [
  32. "api",
  33. "mypage",
  34. "email"
  35. ]
  36. },
  37. "description": "이메일 변경 요청. 새 이메일로 인증 메일이 발송됩니다."
  38. },
  39. "response": []
  40. },
  41. {
  42. "name": "이메일 인증",
  43. "request": {
  44. "auth": {
  45. "type": "noauth"
  46. },
  47. "method": "GET",
  48. "header": [],
  49. "url": {
  50. "raw": "{{baseUrl}}/api/mypage/email/verify?token=YOUR_TOKEN_HERE",
  51. "host": [
  52. "{{baseUrl}}"
  53. ],
  54. "path": [
  55. "api",
  56. "mypage",
  57. "email",
  58. "verify"
  59. ],
  60. "query": [
  61. {
  62. "key": "token",
  63. "value": "YOUR_TOKEN_HERE",
  64. "description": "이메일 인증 토큰 (이메일 변경 시 발송된 링크에 포함)"
  65. }
  66. ]
  67. },
  68. "description": "이메일 인증 토큰으로 이메일 인증을 완료합니다. 인증 불필요 (Anonymous)."
  69. },
  70. "response": []
  71. }
  72. ]
  73. },
  74. {
  75. "name": "별명",
  76. "item": [
  77. {
  78. "name": "별명 변경",
  79. "request": {
  80. "method": "POST",
  81. "header": [],
  82. "body": {
  83. "mode": "raw",
  84. "raw": "{\n \"Name\": \"새별명\"\n}",
  85. "options": {
  86. "raw": {
  87. "language": "json"
  88. }
  89. }
  90. },
  91. "url": {
  92. "raw": "{{baseUrl}}/api/mypage/name",
  93. "host": [
  94. "{{baseUrl}}"
  95. ],
  96. "path": [
  97. "api",
  98. "mypage",
  99. "name"
  100. ]
  101. },
  102. "description": "별명을 변경합니다. 중복 별명 불가."
  103. },
  104. "response": []
  105. },
  106. {
  107. "name": "별명 삭제",
  108. "request": {
  109. "method": "DELETE",
  110. "header": [],
  111. "url": {
  112. "raw": "{{baseUrl}}/api/mypage/name",
  113. "host": [
  114. "{{baseUrl}}"
  115. ],
  116. "path": [
  117. "api",
  118. "mypage",
  119. "name"
  120. ]
  121. },
  122. "description": "별명을 삭제합니다 (null로 초기화)."
  123. },
  124. "response": []
  125. }
  126. ]
  127. },
  128. {
  129. "name": "한마디",
  130. "item": [
  131. {
  132. "name": "한마디 변경",
  133. "request": {
  134. "method": "POST",
  135. "header": [],
  136. "body": {
  137. "mode": "raw",
  138. "raw": "{\n \"Summary\": \"안녕하세요! 반갑습니다.\"\n}",
  139. "options": {
  140. "raw": {
  141. "language": "json"
  142. }
  143. }
  144. },
  145. "url": {
  146. "raw": "{{baseUrl}}/api/mypage/summary",
  147. "host": [
  148. "{{baseUrl}}"
  149. ],
  150. "path": [
  151. "api",
  152. "mypage",
  153. "summary"
  154. ]
  155. },
  156. "description": "한마디(상태 메시지)를 변경합니다."
  157. },
  158. "response": []
  159. },
  160. {
  161. "name": "한마디 삭제",
  162. "request": {
  163. "method": "DELETE",
  164. "header": [],
  165. "url": {
  166. "raw": "{{baseUrl}}/api/mypage/summary",
  167. "host": [
  168. "{{baseUrl}}"
  169. ],
  170. "path": [
  171. "api",
  172. "mypage",
  173. "summary"
  174. ]
  175. },
  176. "description": "한마디를 삭제합니다 (null로 초기화)."
  177. },
  178. "response": []
  179. }
  180. ]
  181. },
  182. {
  183. "name": "자기소개",
  184. "item": [
  185. {
  186. "name": "자기소개 변경",
  187. "request": {
  188. "method": "POST",
  189. "header": [],
  190. "body": {
  191. "mode": "raw",
  192. "raw": "{\n \"Intro\": \"크리에이터를 응원하는 개발자입니다.\"\n}",
  193. "options": {
  194. "raw": {
  195. "language": "json"
  196. }
  197. }
  198. },
  199. "url": {
  200. "raw": "{{baseUrl}}/api/mypage/intro",
  201. "host": [
  202. "{{baseUrl}}"
  203. ],
  204. "path": [
  205. "api",
  206. "mypage",
  207. "intro"
  208. ]
  209. },
  210. "description": "자기소개를 변경합니다. 최대 3000자."
  211. },
  212. "response": []
  213. },
  214. {
  215. "name": "자기소개 삭제",
  216. "request": {
  217. "method": "DELETE",
  218. "header": [],
  219. "url": {
  220. "raw": "{{baseUrl}}/api/mypage/intro",
  221. "host": [
  222. "{{baseUrl}}"
  223. ],
  224. "path": [
  225. "api",
  226. "mypage",
  227. "intro"
  228. ]
  229. },
  230. "description": "자기소개를 삭제합니다 (null로 초기화)."
  231. },
  232. "response": []
  233. }
  234. ]
  235. },
  236. {
  237. "name": "프로필 사진",
  238. "item": [
  239. {
  240. "name": "프로필 사진 변경",
  241. "request": {
  242. "method": "POST",
  243. "header": [],
  244. "body": {
  245. "mode": "formdata",
  246. "formdata": [
  247. {
  248. "key": "thumb",
  249. "type": "file",
  250. "src": ""
  251. }
  252. ]
  253. },
  254. "url": {
  255. "raw": "{{baseUrl}}/api/mypage/thumb",
  256. "host": [
  257. "{{baseUrl}}"
  258. ],
  259. "path": [
  260. "api",
  261. "mypage",
  262. "thumb"
  263. ]
  264. },
  265. "description": "프로필 사진을 변경합니다. FormData로 이미지 파일을 전송합니다."
  266. },
  267. "response": []
  268. },
  269. {
  270. "name": "프로필 사진 삭제",
  271. "request": {
  272. "method": "DELETE",
  273. "header": [],
  274. "url": {
  275. "raw": "{{baseUrl}}/api/mypage/thumb",
  276. "host": [
  277. "{{baseUrl}}"
  278. ],
  279. "path": [
  280. "api",
  281. "mypage",
  282. "thumb"
  283. ]
  284. },
  285. "description": "프로필 사진을 삭제합니다."
  286. },
  287. "response": []
  288. }
  289. ]
  290. },
  291. {
  292. "name": "수신설정",
  293. "item": [
  294. {
  295. "name": "수신설정 저장",
  296. "request": {
  297. "method": "POST",
  298. "header": [],
  299. "body": {
  300. "mode": "raw",
  301. "raw": "{\n \"IsReceiveSMS\": true,\n \"IsReceiveEmail\": true,\n \"IsReceiveNote\": false\n}",
  302. "options": {
  303. "raw": {
  304. "language": "json"
  305. }
  306. }
  307. },
  308. "url": {
  309. "raw": "{{baseUrl}}/api/mypage/receive-settings",
  310. "host": [
  311. "{{baseUrl}}"
  312. ],
  313. "path": [
  314. "api",
  315. "mypage",
  316. "receive-settings"
  317. ]
  318. },
  319. "description": "SMS/이메일/쪽지 수신 설정을 변경합니다."
  320. },
  321. "response": []
  322. }
  323. ]
  324. },
  325. {
  326. "name": "보안",
  327. "item": [
  328. {
  329. "name": "비밀번호 변경",
  330. "request": {
  331. "method": "POST",
  332. "header": [],
  333. "body": {
  334. "mode": "raw",
  335. "raw": "{\n \"CurrentPassword\": \"password123\",\n \"NewPassword\": \"newpassword456\",\n \"ConfirmPassword\": \"newpassword456\"\n}",
  336. "options": {
  337. "raw": {
  338. "language": "json"
  339. }
  340. }
  341. },
  342. "url": {
  343. "raw": "{{baseUrl}}/api/mypage/password",
  344. "host": [
  345. "{{baseUrl}}"
  346. ],
  347. "path": [
  348. "api",
  349. "mypage",
  350. "password"
  351. ]
  352. },
  353. "description": "비밀번호를 변경합니다. 현재 비밀번호 검증 필수."
  354. },
  355. "response": []
  356. },
  357. {
  358. "name": "회원탈퇴",
  359. "request": {
  360. "method": "POST",
  361. "header": [],
  362. "body": {
  363. "mode": "raw",
  364. "raw": "{\n \"Password\": \"password123\"\n}",
  365. "options": {
  366. "raw": {
  367. "language": "json"
  368. }
  369. }
  370. },
  371. "url": {
  372. "raw": "{{baseUrl}}/api/mypage/withdraw",
  373. "host": [
  374. "{{baseUrl}}"
  375. ],
  376. "path": [
  377. "api",
  378. "mypage",
  379. "withdraw"
  380. ]
  381. },
  382. "description": "회원 탈퇴합니다. 비밀번호 검증 필수. 소프트 삭제 처리됩니다."
  383. },
  384. "response": []
  385. },
  386. {
  387. "name": "로그인 기록",
  388. "request": {
  389. "method": "GET",
  390. "header": [],
  391. "url": {
  392. "raw": "{{baseUrl}}/api/mypage/login-logs?page=1&perPage=20&type=today",
  393. "host": [
  394. "{{baseUrl}}"
  395. ],
  396. "path": [
  397. "api",
  398. "mypage",
  399. "login-logs"
  400. ],
  401. "query": [
  402. {
  403. "key": "page",
  404. "value": "1",
  405. "description": "페이지 번호 (기본값: 1)"
  406. },
  407. {
  408. "key": "perPage",
  409. "value": "20",
  410. "description": "페이지 크기 (기본값: 20)"
  411. },
  412. {
  413. "key": "type",
  414. "value": "today",
  415. "description": "검색 기간 (today, week, month, 3month, year)"
  416. }
  417. ]
  418. },
  419. "description": "로그인 기록을 조회합니다. 기간별 필터링 및 페이지네이션 지원."
  420. },
  421. "response": []
  422. }
  423. ]
  424. },
  425. {
  426. "name": "활동 내역",
  427. "item": [
  428. {
  429. "name": "내 게시글 목록",
  430. "request": {
  431. "method": "GET",
  432. "header": [],
  433. "url": {
  434. "raw": "{{baseUrl}}/api/mypage/posts?page=1&perPage=20",
  435. "host": [
  436. "{{baseUrl}}"
  437. ],
  438. "path": [
  439. "api",
  440. "mypage",
  441. "posts"
  442. ],
  443. "query": [
  444. {
  445. "key": "page",
  446. "value": "1",
  447. "description": "페이지 번호 (기본값: 1)"
  448. },
  449. {
  450. "key": "perPage",
  451. "value": "20",
  452. "description": "페이지 크기 (기본값: 20)"
  453. }
  454. ]
  455. },
  456. "description": "내가 작성한 게시글 목록을 조회합니다."
  457. },
  458. "response": []
  459. },
  460. {
  461. "name": "내 댓글 목록",
  462. "request": {
  463. "method": "GET",
  464. "header": [],
  465. "url": {
  466. "raw": "{{baseUrl}}/api/mypage/comments?page=1&perPage=20",
  467. "host": [
  468. "{{baseUrl}}"
  469. ],
  470. "path": [
  471. "api",
  472. "mypage",
  473. "comments"
  474. ],
  475. "query": [
  476. {
  477. "key": "page",
  478. "value": "1",
  479. "description": "페이지 번호 (기본값: 1)"
  480. },
  481. {
  482. "key": "perPage",
  483. "value": "20",
  484. "description": "페이지 크기 (기본값: 20)"
  485. }
  486. ]
  487. },
  488. "description": "내가 작성한 댓글 목록을 조회합니다."
  489. },
  490. "response": []
  491. },
  492. {
  493. "name": "경험치 내역",
  494. "request": {
  495. "method": "GET",
  496. "header": [],
  497. "url": {
  498. "raw": "{{baseUrl}}/api/mypage/exp-logs?page=1&perPage=20&type=today",
  499. "host": [
  500. "{{baseUrl}}"
  501. ],
  502. "path": [
  503. "api",
  504. "mypage",
  505. "exp-logs"
  506. ],
  507. "query": [
  508. {
  509. "key": "page",
  510. "value": "1",
  511. "description": "페이지 번호 (기본값: 1)"
  512. },
  513. {
  514. "key": "perPage",
  515. "value": "20",
  516. "description": "페이지 크기 (기본값: 20)"
  517. },
  518. {
  519. "key": "type",
  520. "value": "today",
  521. "description": "검색 기간 (today, week, month, 3month, year)"
  522. }
  523. ]
  524. },
  525. "description": "경험치 적립/차감 내역을 조회합니다."
  526. },
  527. "response": []
  528. },
  529. {
  530. "name": "충전 내역",
  531. "request": {
  532. "method": "GET",
  533. "header": [],
  534. "url": {
  535. "raw": "{{baseUrl}}/api/mypage/charge-logs?type=month&page=1&perPage=20",
  536. "host": [
  537. "{{baseUrl}}"
  538. ],
  539. "path": [
  540. "api",
  541. "mypage",
  542. "charge-logs"
  543. ],
  544. "query": [
  545. {
  546. "key": "type",
  547. "value": "month",
  548. "description": "기간 (today / week / month / quarter / half)"
  549. },
  550. {
  551. "key": "page",
  552. "value": "1",
  553. "description": "페이지 번호 (기본값: 1)"
  554. },
  555. {
  556. "key": "perPage",
  557. "value": "20",
  558. "description": "페이지당 항목 수 (기본값: 20, 최대: 50)"
  559. }
  560. ]
  561. },
  562. "description": "포인트 충전 완료(Paid) 내역을 기간별로 조회합니다."
  563. },
  564. "response": []
  565. }
  566. ]
  567. }
  568. ],
  569. "auth": {
  570. "type": "bearer",
  571. "bearer": [
  572. {
  573. "key": "token",
  574. "value": "{{accessToken}}",
  575. "type": "string"
  576. }
  577. ]
  578. },
  579. "event": [
  580. {
  581. "listen": "prerequest",
  582. "script": {
  583. "type": "text/javascript",
  584. "packages": {},
  585. "requests": {},
  586. "exec": [
  587. ""
  588. ]
  589. }
  590. },
  591. {
  592. "listen": "test",
  593. "script": {
  594. "type": "text/javascript",
  595. "packages": {},
  596. "requests": {},
  597. "exec": [
  598. ""
  599. ]
  600. }
  601. }
  602. ]
  603. }