Wallet.postman_collection.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "info": {
  3. "_postman_id": "d71bc6fa-2d0e-4afc-b15e-7a33e12d3b38",
  4. "name": "지갑",
  5. "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
  6. "_exporter_id": "40701166"
  7. },
  8. "item": [
  9. {
  10. "name": "잔액 조회",
  11. "request": {
  12. "method": "GET",
  13. "header": [],
  14. "url": {
  15. "raw": "{{baseUrl}}/api/wallet",
  16. "host": [
  17. "{{baseUrl}}"
  18. ],
  19. "path": [
  20. "api",
  21. "wallet"
  22. ]
  23. },
  24. "description": "내 지갑 잔액 정보를 조회합니다."
  25. },
  26. "response": []
  27. },
  28. {
  29. "name": "거래 내역 조회",
  30. "request": {
  31. "method": "GET",
  32. "header": [],
  33. "url": {
  34. "raw": "{{baseUrl}}/api/wallet/transactions?page=1&perPage=20",
  35. "host": [
  36. "{{baseUrl}}"
  37. ],
  38. "path": [
  39. "api",
  40. "wallet",
  41. "transactions"
  42. ],
  43. "query": [
  44. {
  45. "key": "page",
  46. "value": "1",
  47. "description": "페이지 번호 (기본값: 1)"
  48. },
  49. {
  50. "key": "perPage",
  51. "value": "20",
  52. "description": "페이지 크기 (기본값: 20)"
  53. },
  54. {
  55. "key": "type",
  56. "value": "",
  57. "disabled": true,
  58. "description": "거래 유형 필터 (WalletTransactionType enum)"
  59. }
  60. ]
  61. },
  62. "description": "지갑 거래 내역을 조회합니다. 거래 유형별 필터링 및 페이지네이션 지원."
  63. },
  64. "response": []
  65. }
  66. ],
  67. "auth": {
  68. "type": "bearer",
  69. "bearer": [
  70. {
  71. "key": "token",
  72. "value": "{{accessToken}}",
  73. "type": "string"
  74. }
  75. ]
  76. },
  77. "event": [
  78. {
  79. "listen": "prerequest",
  80. "script": {
  81. "type": "text/javascript",
  82. "packages": {},
  83. "requests": {},
  84. "exec": [
  85. ""
  86. ]
  87. }
  88. },
  89. {
  90. "listen": "test",
  91. "script": {
  92. "type": "text/javascript",
  93. "packages": {},
  94. "requests": {},
  95. "exec": [
  96. ""
  97. ]
  98. }
  99. }
  100. ]
  101. }