{
  "info": {
    "_postman_id": "bc35d353-3dd5-4891-af14-63989a806baa",
    "name": "PoolPay Master API Collection",
    "description": "Unified API collection for PoolPay Backend. Organized for production-grade development with automatic token refresh scripts.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{ACCESS_TOKEN}}",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "const response = pm.response.json();",
          "if (response?.accessToken) {",
          "  pm.collectionVariables.set(\"ACCESS_TOKEN\", response.accessToken);",
          "}",
          "if (response?.refreshToken) {",
          "  pm.collectionVariables.set(\"REFRESH_TOKEN\", response.refreshToken);",
          "}",
          "if (response?.data?.accessToken) {",
          "  pm.collectionVariables.set(\"ACCESS_TOKEN\", response.data.accessToken);",
          "}",
          "if (response?.data?.refreshToken) {",
          "  pm.collectionVariables.set(\"REFRESH_TOKEN\", response.data.refreshToken);",
          "}",
          "if (pm.response.code === 401 && pm.collectionVariables.get(\"REFRESH_TOKEN\")) {",
          "  console.log(\"Access token expired. Requesting refresh...\");",
          "  const baseUrl = pm.collectionVariables.get(\"BASE_URL\");",
          "  pm.sendRequest({",
          "    url: `${baseUrl}/auth/refresh-token`,",
          "    method: 'POST',",
          "    header: { 'Content-Type': 'application/json' },",
          "    body: {",
          "      mode: 'raw',",
          "      raw: JSON.stringify({ refreshToken: pm.collectionVariables.get(\"REFRESH_TOKEN\") })",
          "    }",
          "  }, function (err, res) {",
          "    if (!err && res.code === 200) {",
          "      const data = res.json();",
          "      if (data?.data?.accessToken) {",
          "        pm.collectionVariables.set(\"ACCESS_TOKEN\", data.data.accessToken);",
          "        console.log(\"Token refreshed. Retrying original request...\");",
          "        const retryReq = pm.request;",
          "        retryReq.headers.add({ key: 'Authorization', value: `Bearer ${data.data.accessToken}` });",
          "        pm.sendRequest(retryReq, function(retryErr, retryRes) {});",
          "      }",
          "    }",
          "  });",
          "}"
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "BASE_URL",
      "value": "http://localhost:5000/api/v1",
      "type": "string"
    },
    {
      "key": "ACCESS_TOKEN",
      "value": "",
      "type": "string"
    },
    {
      "key": "REFRESH_TOKEN",
      "value": "",
      "type": "string"
    },
    {
      "key": "ADMIN_EMAIL",
      "value": "admin@poolpay.com",
      "type": "string"
    },
    {
      "key": "ADMIN_PASSWORD",
      "value": "AdminStrongPass123!",
      "type": "string"
    },
    {
      "key": "USER_EMAIL",
      "value": "user@example.com",
      "type": "string"
    },
    {
      "key": "USER_PASSWORD",
      "value": "StrongPass123!",
      "type": "string"
    },
    {
      "key": "USER_ID",
      "value": "",
      "type": "string"
    },
    {
      "key": "GROUP_ID",
      "value": "",
      "type": "string"
    },
    {
      "key": "TRANSACTION_ID",
      "value": "",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Admin",
      "item": [
        {
          "name": "GET /activity-logs",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/activity-logs",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "activity-logs"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /audit-logs",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/audit-logs",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "audit-logs"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /dashboard/recent-activities",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/dashboard/recent-activities",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "dashboard",
                "recent-activities"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /dashboard/recent-users",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/dashboard/recent-users",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "dashboard",
                "recent-users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /dashboard/revenue-chart",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/dashboard/revenue-chart",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "dashboard",
                "revenue-chart"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /dashboard/summary",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/dashboard/summary",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "dashboard",
                "summary"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /dashboard/user-growth",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/dashboard/user-growth",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "dashboard",
                "user-growth"
              ]
            }
          },
          "response": []
        },
        {
          "name": "DELETE /debug/clear-mock-data",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/debug/clear-mock-data",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "debug",
                "clear-mock-data"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /debug/seed-mock-data",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/debug/seed-mock-data",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "debug",
                "seed-mock-data"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /debug/test-push-notification",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/debug/test-push-notification",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "debug",
                "test-push-notification"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /funds/group-details",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/funds/group-details",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "funds",
                "group-details"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /funds/summary",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/funds/summary",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "funds",
                "summary"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /groups",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/groups",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "groups"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /groups/:id",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/groups/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "groups",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /groups/:id/status",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/groups/:id/status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "groups",
                ":id",
                "status"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /groups/stats",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/groups/stats",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "groups",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /manual-review",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/manual-review",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "manual-review"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /payments",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payments",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payments"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /payments/:id/resolve",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payments/:id/resolve",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payments",
                ":id",
                "resolve"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /payments/:id/retry",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payments/:id/retry",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payments",
                ":id",
                "retry"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /payments/export",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payments/export",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payments",
                "export"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /payouts",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payouts",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payouts"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /payouts/:id/retry",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/payouts/:id/retry",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "payouts",
                ":id",
                "retry"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /pending-actions",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/pending-actions",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "pending-actions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /recovery-required",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/recovery-required",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "recovery-required"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /reports/financial",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/reports/financial",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "reports",
                "financial"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /reports/performance",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/reports/performance",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "reports",
                "performance"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /reports/performance-overview",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/reports/performance-overview",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "reports",
                "performance-overview"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /settings",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/settings",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "settings"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /settings",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/settings",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "settings"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /turns/:id/resolve",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/turns/:id/resolve",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "turns",
                ":id",
                "resolve"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /turns/:id/retry",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/turns/:id/retry",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "turns",
                ":id",
                "retry"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /users",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/users",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /users/:id",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/users/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "users",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /users/:id/status",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/users/:id/status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "users",
                ":id",
                "status"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /users/export",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/users/export",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "users",
                "export"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /users/stats",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/users/stats",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "users",
                "stats"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Advertisement",
      "item": [
        {
          "name": "POST All",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/advertisements",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "advertisements"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/advertisements",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "advertisements"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/advertisements/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "advertisements",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "DELETE /:id",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/advertisements/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "advertisements",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /active",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/advertisements/active",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "advertisements",
                "active"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Auth",
      "item": [
        {
          "name": "POST /change-password",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/change-password",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "change-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /facebook",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/facebook",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "facebook"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /facebook/callback",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/facebook/callback",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "facebook",
                "callback"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /forgot-password",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/forgot-password",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "forgot-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /google",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/google",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "google"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /google/callback",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/google/callback",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "google",
                "callback"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /login",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/login",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /logout",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/logout",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "logout"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /refresh-token",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/refresh-token",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "refresh-token"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /register",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/register",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "register"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /resend-verification-code",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/resend-verification-code",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "resend-verification-code"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /reset-password",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/reset-password",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "reset-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /set-password",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/set-password",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "set-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /verify-2fa",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/verify-2fa",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "verify-2fa"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /verify-email",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/auth/verify-email",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "auth",
                "verify-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Chat",
      "item": [
        {
          "name": "GET /group/:groupId/messages",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/chat/group/:groupId/messages",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "chat",
                "group",
                ":groupId",
                "messages"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /group/:groupId/messages",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/chat/group/:groupId/messages",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "chat",
                "group",
                ":groupId",
                "messages"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Group",
      "item": [
        {
          "name": "POST All",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/groups",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "groups"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /:id",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/groups/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "groups",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "DELETE /:id",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/groups/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "groups",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /:id/start",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/groups/:id/start",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "groups",
                ":id",
                "start"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /invite/:inviteCode",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/groups/invite/:inviteCode",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "groups",
                "invite",
                ":inviteCode"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "GroupMember",
      "item": [
        {
          "name": "GET /:groupId",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/group-members/:groupId",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "group-members",
                ":groupId"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/notice",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/group-members/:id/notice",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "group-members",
                ":id",
                "notice"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/remove",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/group-members/:id/remove",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "group-members",
                ":id",
                "remove"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /join",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/group-members/join",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "group-members",
                "join"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /my-groups",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/group-members/my-groups",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "group-members",
                "my-groups"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Membership",
      "item": [
        {
          "name": "POST /cancel",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/membership/cancel",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "membership",
                "cancel"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/membership/status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "membership",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /subscribe",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/membership/subscribe",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "membership",
                "subscribe"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /toggle-auto-renew",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/membership/toggle-auto-renew",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "membership",
                "toggle-auto-renew"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "MobileMembership",
      "item": [
        {
          "name": "GET /status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/mobile-membership/status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "mobile-membership",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /sync",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/mobile-membership/sync",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "mobile-membership",
                "sync"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /verify-apple",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/mobile-membership/verify-apple",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "mobile-membership",
                "verify-apple"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /verify-google",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/mobile-membership/verify-google",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "mobile-membership",
                "verify-google"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Notification",
      "item": [
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/notifications",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "notifications"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/read",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/notifications/:id/read",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "notifications",
                ":id",
                "read"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "PATCH /mark-all-read",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/notifications/mark-all-read",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "notifications",
                "mark-all-read"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Payment",
      "item": [
        {
          "name": "GET /my-payments",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payments/my-payments",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payments",
                "my-payments"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "PaymentMethod",
      "item": [
        {
          "name": "POST All",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods"
              ]
            }
          },
          "response": []
        },
        {
          "name": "DELETE /:id",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/autopay",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods/:id/autopay",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods",
                ":id",
                "autopay"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/default",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods/:id/default",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods",
                ":id",
                "default"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "POST /create-setup-intent",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/payment-methods/create-setup-intent",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "payment-methods",
                "create-setup-intent"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Adjustment",
      "item": [
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/adjustments",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "adjustments"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /:id/retry",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/admin/adjustments/:id/retry",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "admin",
                "adjustments",
                ":id",
                "retry"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Revenue",
      "item": [
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/revenue",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "revenue"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /metrics",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/revenue/metrics",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "revenue",
                "metrics"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Settings",
      "item": [
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/settings",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "settings"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /auth-status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/settings/auth-status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "settings",
                "auth-status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /support-email",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/settings/support-email",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "settings",
                "support-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "PATCH /update",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/settings/update",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "settings",
                "update"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Stripe",
      "item": [
        {
          "name": "POST /connect/account-link",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/stripe/connect/account-link",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "stripe",
                "connect",
                "account-link"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /connect/login-link",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/stripe/connect/login-link",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "stripe",
                "connect",
                "login-link"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /connect/redirect/:type",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/stripe/connect/redirect/:type",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "stripe",
                "connect",
                "redirect",
                ":type"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /connect/status",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/stripe/connect/status",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "stripe",
                "connect",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "DELETE /connect/unlink",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/stripe/connect/unlink",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "stripe",
                "connect",
                "unlink"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Transaction",
      "item": [
        {
          "name": "GET All",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/transactions",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "transactions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/flag",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/transactions/:id/flag",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "transactions",
                ":id",
                "flag"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/freeze",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/transactions/:id/freeze",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "transactions",
                ":id",
                "freeze"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /my-transactions",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/transactions/my-transactions",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "transactions",
                "my-transactions"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "User",
      "item": [
        {
          "name": "GET /:id",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "DELETE /:id",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/:id",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                ":id"
              ]
            }
          },
          "response": []
        },
        {
          "name": "PATCH /:id/suspend",
          "request": {
            "method": "PATCH",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/:id/suspend",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                ":id",
                "suspend"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "GET /all-users",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/all-users",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                "all-users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /me",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/me",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                "me"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET /my-stats",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/my-stats",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                "my-stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST /upload-profile-image",
          "request": {
            "method": "POST",
            "header": [],
            "url": {
              "raw": "{{BASE_URL}}/user/upload-profile-image",
              "host": [
                "{{BASE_URL}}"
              ],
              "path": [
                "user",
                "upload-profile-image"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n    \"example\": \"data\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    }
  ]
}