{
  "info": {
    "_postman_id": "0a6525c2-9970-4dfb-ade3-61c5617e24a8",
    "name": "MTE API Relay",
    "description": "Use this postman collection to send HTTP calls to the free and reliable API service [https://jsonplaceholder.typicode.com](https://jsonplaceholder.typicode.com)",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "1087455"
  },
  "item": [
    {
      "name": "/users/:id",
      "request": {
        "method": "GET",
        "header": [],
        "url": {
          "raw": "{{DOMAIN}}/users/1",
          "host": ["{{DOMAIN}}"],
          "path": ["users", "1"]
        }
      },
      "response": []
    },
    {
      "name": "/users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\r\n    \"name\":\"John Doe\",\r\n    \"email\":\"john.doe@example.com\"\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{DOMAIN}}/users",
          "host": ["{{DOMAIN}}"],
          "path": ["users"]
        }
      },
      "response": []
    },
    {
      "name": "/users/:id",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "content-type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\r\n    \"name\":\"Jane Doe\",\r\n    \"email\":\"jane.doe@example.com\"\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{DOMAIN}}/users/1",
          "host": ["{{DOMAIN}}"],
          "path": ["users", "1"]
        }
      },
      "response": []
    },
    {
      "name": "/users/:id",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "content-type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\r\n    \"name\":\"Johnny Doe\"\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{DOMAIN}}/users/1",
          "host": ["{{DOMAIN}}"],
          "path": ["users", "1"]
        }
      },
      "response": []
    },
    {
      "name": "/users/:id",
      "request": {
        "method": "DELETE",
        "header": [],
        "url": {
          "raw": "{{DOMAIN}}/users/1",
          "host": ["{{DOMAIN}}"],
          "path": ["users", "1"]
        }
      },
      "response": []
    }
  ],
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "exec": [""]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "exec": [""]
      }
    }
  ],
  "variable": [
    {
      "key": "DOMAIN",
      "value": "https://jsonplaceholder.typicode.com"
    }
  ]
}
