{
  "name": "Playground API (Bruno) — Custom",
  "version": "1",
  "variables": [
    {
      "name": "baseUrl",
      "value": "http://playground-api-xi.vercel.app"
    }
  ],
  "items": [
    {
      "name": "GET /custom",
      "type": "http",
      "request": {
        "method": "GET",
        "url": "{{baseUrl}}/custom",
        "headers": [
          {
            "name": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": null
      }
    },
    {
      "name": "POST /custom/seed",
      "type": "http",
      "request": {
        "method": "POST",
        "url": "{{baseUrl}}/custom/seed",
        "headers": [
          {
            "name": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "json",
          "json": "{\n  \"template\": \"ecommerce\"\n}"
        }
      }
    },
    {
      "name": "GET /custom/:collection",
      "type": "http",
      "request": {
        "method": "GET",
        "url": "{{baseUrl}}/custom/:collection",
        "headers": [
          {
            "name": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": null
      }
    },
    {
      "name": "POST /custom/:collection",
      "type": "http",
      "request": {
        "method": "POST",
        "url": "{{baseUrl}}/custom/:collection",
        "headers": [
          {
            "name": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "json",
          "json": "{\n  \"name\": \"Custom Product Item\",\n  \"price\": 99.99,\n  \"inStock\": true\n}"
        }
      }
    },
    {
      "name": "DELETE /custom/:collection/:id",
      "type": "http",
      "request": {
        "method": "DELETE",
        "url": "{{baseUrl}}/custom/:collection/:id",
        "headers": [
          {
            "name": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": null
      }
    }
  ]
}