{
  "_type": "export",
  "__export_format": 4,
  "resources": [
    {
      "_id": "wrk_playground_api",
      "_type": "workspace",
      "name": "Playground API — Auth"
    },
    {
      "_id": "env_playground_api",
      "_type": "environment",
      "parentId": "wrk_playground_api",
      "name": "Base Environment",
      "data": {
        "baseUrl": "http://playground-api-xi.vercel.app"
      }
    },
    {
      "_id": "req_1",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "POST /auth/login",
      "method": "POST",
      "url": "{{ _.baseUrl }}/auth/login",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"username\": \"Bret\",\n  \"password\": \"password123\"\n}"
      }
    },
    {
      "_id": "req_2",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "POST /auth/register",
      "method": "POST",
      "url": "{{ _.baseUrl }}/auth/register",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"name\": \"Alice Smith\",\n  \"username\": \"alice\",\n  \"email\": \"alice@example.com\",\n  \"password\": \"password123\"\n}"
      }
    },
    {
      "_id": "req_3",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "POST /auth/refresh",
      "method": "POST",
      "url": "{{ _.baseUrl }}/auth/refresh",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"refreshToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6...\"\n}"
      }
    },
    {
      "_id": "req_4",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "GET /auth/me",
      "method": "GET",
      "url": "{{ _.baseUrl }}/auth/me",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {}
    },
    {
      "_id": "req_5",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "PATCH /auth/me",
      "method": "PATCH",
      "url": "{{ _.baseUrl }}/auth/me",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"name\": \"Bret - Updated Profile\",\n  \"email\": \"bret.new@example.com\"\n}"
      }
    }
  ]
}