{
  "info": {
    "name": "Playground API Collection — Custom",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "http://playground-api-xi.vercel.app"
    }
  ],
  "item": [
    {
      "name": "CUSTOM",
      "item": [
        {
          "name": "GET /custom",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/custom",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "custom"
              ]
            }
          }
        },
        {
          "name": "POST /custom/seed",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/custom/seed",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "custom",
                "seed"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"template\": \"ecommerce\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "GET /custom/:collection",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/custom/:collection",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "custom",
                ":collection"
              ]
            }
          }
        },
        {
          "name": "POST /custom/:collection",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/custom/:collection",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "custom",
                ":collection"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Custom Product Item\",\n  \"price\": 99.99,\n  \"inStock\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "DELETE /custom/:collection/:id",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/custom/:collection/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "custom",
                ":collection",
                ":id"
              ]
            }
          }
        }
      ]
    }
  ]
}