{
  "_type": "export",
  "__export_format": 4,
  "resources": [
    {
      "_id": "wrk_playground_api",
      "_type": "workspace",
      "name": "Playground API — Custom"
    },
    {
      "_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": "GET /custom",
      "method": "GET",
      "url": "{{ _.baseUrl }}/custom",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {}
    },
    {
      "_id": "req_2",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "POST /custom/seed",
      "method": "POST",
      "url": "{{ _.baseUrl }}/custom/seed",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"template\": \"ecommerce\"\n}"
      }
    },
    {
      "_id": "req_3",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "GET /custom/:collection",
      "method": "GET",
      "url": "{{ _.baseUrl }}/custom/:collection",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {}
    },
    {
      "_id": "req_4",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "POST /custom/:collection",
      "method": "POST",
      "url": "{{ _.baseUrl }}/custom/:collection",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"name\": \"Custom Product Item\",\n  \"price\": 99.99,\n  \"inStock\": true\n}"
      }
    },
    {
      "_id": "req_5",
      "_type": "request",
      "parentId": "wrk_playground_api",
      "name": "DELETE /custom/:collection/:id",
      "method": "DELETE",
      "url": "{{ _.baseUrl }}/custom/:collection/:id",
      "headers": [
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {}
    }
  ]
}