{
  "info": {
    "_postman_id": "524f8c8b-57f1-4aee-b52b-70e9b63b317c",
    "name": "My Petstore Tests",
    "description": "This is a sample Pet Store Server based on the OpenAPI 3.0 specification.  You can find out more about\nSwagger at [http://swagger.io](http://swagger.io). In the third iteration of the pet store, we've switched to the design first approach!\nYou can now help us improve the API whether it's by making changes to the definition itself or to the code.\nThat way, with time, we can improve the API in general, and expose some of the new features in OAS3.\n\nSome useful links:\n- [The Pet Store repository](https://github.com/swagger-api/swagger-petstore)\n- [The source API definition for the Pet Store](https://github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml)\n\nContact Support:\n Email: apiteam@swagger.io",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "pet",
      "item": [
        {
          "name": "{pet Id}",
          "item": [
            {
              "name": "Find pet by ID",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "id": "1ec8bdad-485d-4e42-8c28-e25338c0aeac",
                    "exec": [
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.response.to.have.status(200);",
                      "});"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "id": "d0879224-90e2-4f86-9e8f-5dd2317a8ec9",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "oauth2"
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/pet/:petId",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", ":petId"],
                  "variable": [
                    {
                      "id": "7c37752f-25ed-4a23-94c1-5d73fdd7d8d1",
                      "key": "petId",
                      "value": "-55912392",
                      "description": "(Required) ID of pet to return"
                    }
                  ]
                },
                "description": "Returns a single pet"
              },
              "response": [
                {
                  "id": "caffd048-f8ca-472f-aed9-c4d4f6fa11ee",
                  "name": "successful operation",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId"],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": "{\n \"name\": \"doggie\",\n \"photoUrls\": [\n  \"magna reprehenderit mollit qui\",\n  \"voluptate nostrud labore\"\n ],\n \"id\": 10,\n \"category\": {\n  \"id\": 1,\n  \"name\": \"Dogs\"\n },\n \"tags\": [\n  {\n   \"id\": -46476444,\n   \"name\": \"proident ea nisi\"\n  },\n  {\n   \"id\": -2947211,\n   \"name\": \"dolor est\"\n  }\n ],\n \"status\": \"available\"\n}"
                },
                {
                  "id": "8bcbfc57-9f85-4f19-a326-97700e5271af",
                  "name": "Invalid ID supplied",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId"],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                },
                {
                  "id": "abc59033-9d33-4adc-a557-9e9834408201",
                  "name": "Pet not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId"],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            },
            {
              "name": "Updates a pet in the store with form data",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "id": "ed954b86-ca37-4406-80b7-47d2fbc83a03",
                    "exec": [
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.response.to.have.status(200);",
                      "});"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "id": "d619bcb2-13bf-4a9c-b3c7-b3162d9fc453",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "oauth2"
                },
                "method": "POST",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/pet/:petId?name=occaecat&status=occaecat",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", ":petId"],
                  "query": [
                    {
                      "key": "name",
                      "value": "occaecat",
                      "description": "Name of pet that needs to be updated"
                    },
                    {
                      "key": "status",
                      "value": "occaecat",
                      "description": "Status of pet that needs to be updated"
                    }
                  ],
                  "variable": [
                    {
                      "id": "ae0058d9-95fa-4bd5-9c13-65a6ddfeb41a",
                      "key": "petId",
                      "value": "-55912392",
                      "description": "(Required) ID of pet that needs to be updated"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "0e9cb9bb-6376-462d-ad02-58e9f09135e4",
                  "name": "Invalid input",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId?name=occaecat&status=occaecat",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId"],
                      "query": [
                        {
                          "key": "name",
                          "value": "occaecat"
                        },
                        {
                          "key": "status",
                          "value": "occaecat"
                        }
                      ],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "Method Not Allowed",
                  "code": 405,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            },
            {
              "name": "Deletes a pet",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "id": "48d6d150-3a7c-4fbe-8011-584fa501c9fa",
                    "exec": [
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.response.to.have.status(200);",
                      "});"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "id": "b2b30b12-862d-438d-89ac-959e738c86c7",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "auth": {
                  "type": "oauth2"
                },
                "method": "DELETE",
                "header": [
                  {
                    "key": "api_key",
                    "value": "occaecat"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/pet/:petId",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", ":petId"],
                  "variable": [
                    {
                      "id": "151a2dde-1700-4af0-80a7-7d70ad83d0f3",
                      "key": "petId",
                      "value": "-55912392",
                      "description": "(Required) Pet id to delete"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "25af759d-2cc5-47bc-8f95-2be15b28c0de",
                  "name": "Invalid pet value",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      },
                      {
                        "key": "api_key",
                        "value": "occaecat"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId"],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            },
            {
              "name": "uploads an image",
              "id": "97cce54a-ffc9-4886-a2ea-d82233ceb4c6",
              "request": {
                "auth": {
                  "type": "oauth2"
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/octet-stream"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "\"occaecat\""
                },
                "url": {
                  "raw": "{{baseUrl}}/pet/:petId/uploadImage?additionalMetadata=occaecat",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", ":petId", "uploadImage"],
                  "query": [
                    {
                      "key": "additionalMetadata",
                      "value": "occaecat",
                      "description": "Additional Metadata"
                    }
                  ],
                  "variable": [
                    {
                      "id": "95d46076-96d2-4309-9dcd-85388393e40e",
                      "key": "petId",
                      "value": "-55912392",
                      "description": "(Required) ID of pet to update"
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "fc29d3a3-315e-4822-bcc6-52cde43211de",
                  "name": "successful operation",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "description": "Added as a part of security scheme: oauth2",
                        "key": "Authorization",
                        "value": "<token>"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "\"occaecat\""
                    },
                    "url": {
                      "raw": "{{baseUrl}}/pet/:petId/uploadImage?additionalMetadata=occaecat",
                      "host": ["{{baseUrl}}"],
                      "path": ["pet", ":petId", "uploadImage"],
                      "query": [
                        {
                          "key": "additionalMetadata",
                          "value": "occaecat"
                        }
                      ],
                      "variable": [
                        {
                          "key": "petId"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": "{\n \"code\": -74723793,\n \"type\": \"nostrud velit\",\n \"message\": \"fugiat sint eu in enim\"\n}"
                }
              ]
            }
          ],
          "id": "3f936aed-eb57-4684-b0e2-a4b72a42c2bd"
        },
        {
          "name": "Update an existing pet",
          "event": [
            {
              "listen": "test",
              "script": {
                "id": "08d4a221-91e7-4064-9560-f5238bce4f20",
                "exec": [
                  "pm.test(\"Status code is 200\", function () {",
                  "    pm.response.to.have.status(200);",
                  "});"
                ],
                "type": "text/javascript"
              }
            }
          ],
          "id": "eb3115d2-351d-4d50-9ea1-19f9d0e1a30f",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "auth": {
              "type": "oauth2"
            },
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "name",
                  "value": "doggie",
                  "description": "(Required) "
                },
                {
                  "key": "photoUrls",
                  "value": "adipisicing eu ex irure",
                  "description": "(Required) "
                },
                {
                  "key": "photoUrls",
                  "value": "ut consequat dolor",
                  "description": "(Required) "
                },
                {
                  "key": "id",
                  "value": "10"
                },
                {
                  "key": "id",
                  "value": "1"
                },
                {
                  "key": "name",
                  "value": "Dogs"
                },
                {
                  "key": "tags",
                  "value": "{\"id\":-18720867,\"name\":\"deserunt sint\"}"
                },
                {
                  "key": "tags",
                  "value": "{\"id\":2543658,\"name\":\"occaecat reprehenderit enim aliquip\"}"
                },
                {
                  "key": "status",
                  "value": "sold",
                  "description": "pet status in the store"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/pet",
              "host": ["{{baseUrl}}"],
              "path": ["pet"]
            },
            "description": "Update an existing pet by Id"
          },
          "response": [
            {
              "id": "4e1d4846-f823-45eb-88d1-f5118ba34841",
              "name": "Successful operation",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "{\n \"name\": \"doggie\",\n \"photoUrls\": [\n  \"magna reprehenderit mollit qui\",\n  \"voluptate nostrud labore\"\n ],\n \"id\": 10,\n \"category\": {\n  \"id\": 1,\n  \"name\": \"Dogs\"\n },\n \"tags\": [\n  {\n   \"id\": -46476444,\n   \"name\": \"proident ea nisi\"\n  },\n  {\n   \"id\": -2947211,\n   \"name\": \"dolor est\"\n  }\n ],\n \"status\": \"available\"\n}"
            },
            {
              "id": "697aa4d6-9a1c-4d88-97b3-9a24016bfcc6",
              "name": "Invalid ID supplied",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            },
            {
              "id": "113591af-9b8b-4529-ae14-65fd54793751",
              "name": "Pet not found",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "Not Found",
              "code": 404,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            },
            {
              "id": "eb3c4ad7-cafc-4a14-9a6f-1b6abaff6e2a",
              "name": "Validation exception",
              "originalRequest": {
                "method": "PUT",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "Method Not Allowed",
              "code": 405,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        },
        {
          "name": "Add a new pet to the store",
          "event": [
            {
              "listen": "test",
              "script": {
                "id": "b8734fc5-595d-46fa-8543-4d34ac21543d",
                "exec": [
                  "pm.test(\"Status code is 200\", function () {",
                  "    pm.response.to.have.status(200);",
                  "});"
                ],
                "type": "text/javascript"
              }
            }
          ],
          "id": "076c064b-ddb1-4e82-b081-3866c47b11ca",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "auth": {
              "type": "oauth2"
            },
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "name",
                  "value": "doggie",
                  "description": "(Required) "
                },
                {
                  "key": "photoUrls",
                  "value": "magna reprehenderit mollit qui",
                  "description": "(Required) "
                },
                {
                  "key": "photoUrls",
                  "value": "voluptate nostrud labore",
                  "description": "(Required) "
                },
                {
                  "key": "id",
                  "value": "10"
                },
                {
                  "key": "id",
                  "value": "1"
                },
                {
                  "key": "name",
                  "value": "Dogs"
                },
                {
                  "key": "tags",
                  "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                },
                {
                  "key": "tags",
                  "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                },
                {
                  "key": "status",
                  "value": "available",
                  "description": "pet status in the store"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/pet",
              "host": ["{{baseUrl}}"],
              "path": ["pet"]
            },
            "description": "Add a new pet to the store"
          },
          "response": [
            {
              "id": "c71a27a7-bb72-4bb2-968e-172e5600de0e",
              "name": "Successful operation",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "{\n \"name\": \"doggie\",\n \"photoUrls\": [\n  \"magna reprehenderit mollit qui\",\n  \"voluptate nostrud labore\"\n ],\n \"id\": 10,\n \"category\": {\n  \"id\": 1,\n  \"name\": \"Dogs\"\n },\n \"tags\": [\n  {\n   \"id\": -46476444,\n   \"name\": \"proident ea nisi\"\n  },\n  {\n   \"id\": -2947211,\n   \"name\": \"dolor est\"\n  }\n ],\n \"status\": \"available\"\n}"
            },
            {
              "id": "8e3d0e15-ff3c-4c51-92ab-8a1ff86d91ae",
              "name": "Invalid input",
              "originalRequest": {
                "method": "POST",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "description": "(Required) ",
                      "key": "name",
                      "value": "doggie"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "magna reprehenderit mollit qui"
                    },
                    {
                      "description": "(Required) ",
                      "key": "photoUrls",
                      "value": "voluptate nostrud labore"
                    },
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "id",
                      "value": "1"
                    },
                    {
                      "key": "name",
                      "value": "Dogs"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-46476444,\"name\":\"proident ea nisi\"}"
                    },
                    {
                      "key": "tags",
                      "value": "{\"id\":-2947211,\"name\":\"dolor est\"}"
                    },
                    {
                      "description": "pet status in the store",
                      "key": "status",
                      "value": "available"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/pet",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet"]
                }
              },
              "status": "Method Not Allowed",
              "code": 405,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        },
        {
          "name": "Finds Pets by status",
          "event": [
            {
              "listen": "test",
              "script": {
                "id": "a7e5ea97-9622-448a-abdf-d80884628015",
                "exec": [
                  "pm.test(\"Status code is 200\", function () {",
                  "    pm.response.to.have.status(200);",
                  "});"
                ],
                "type": "text/javascript"
              }
            }
          ],
          "id": "553b705f-c116-418c-95a7-b2d5c4a40143",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "auth": {
              "type": "oauth2"
            },
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/pet/findByStatus?status=available",
              "host": ["{{baseUrl}}"],
              "path": ["pet", "findByStatus"],
              "query": [
                {
                  "key": "status",
                  "value": "available",
                  "description": "Status values that need to be considered for filter"
                }
              ]
            },
            "description": "Multiple status values can be provided with comma separated strings"
          },
          "response": [
            {
              "id": "ddbb6435-3e4e-4c3d-9476-e3f9aa8d2722",
              "name": "successful operation",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/pet/findByStatus?status=available",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", "findByStatus"],
                  "query": [
                    {
                      "key": "status",
                      "value": "available"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "[\n {\n  \"name\": \"doggie\",\n  \"photoUrls\": [\n   \"sint c\",\n   \"Excepteur aute\"\n  ],\n  \"id\": 10,\n  \"category\": {\n   \"id\": 1,\n   \"name\": \"Dogs\"\n  },\n  \"tags\": [\n   {\n    \"id\": 67269931,\n    \"name\": \"eiusmod amet esse dolor deserunt\"\n   },\n   {\n    \"id\": 59190849,\n    \"name\": \"eu et\"\n   }\n  ],\n  \"status\": \"pending\"\n },\n {\n  \"name\": \"doggie\",\n  \"photoUrls\": [\n   \"magna Lorem Excepteur velit\",\n   \"ea\"\n  ],\n  \"id\": 10,\n  \"category\": {\n   \"id\": 1,\n   \"name\": \"Dogs\"\n  },\n  \"tags\": [\n   {\n    \"id\": -80553543,\n    \"name\": \"l\"\n   },\n   {\n    \"id\": -59381976,\n    \"name\": \"eiusmod reprehenderit tempor\"\n   }\n  ],\n  \"status\": \"sold\"\n }\n]"
            },
            {
              "id": "3453ec1d-e6c3-4465-b17d-7758f029d79a",
              "name": "Invalid status value",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/pet/findByStatus?status=available",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", "findByStatus"],
                  "query": [
                    {
                      "key": "status",
                      "value": "available"
                    }
                  ]
                }
              },
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        },
        {
          "name": "Finds Pets by tags",
          "event": [
            {
              "listen": "test",
              "script": {
                "id": "9ecbf52f-6d0c-48cc-b47f-1445d75262d7",
                "exec": [
                  "pm.test(\"Status code is 200\", function () {",
                  "    pm.response.to.have.status(200);",
                  "});"
                ],
                "type": "text/javascript"
              }
            }
          ],
          "id": "99238201-a0bd-4e5c-be55-7e359a633bfe",
          "protocolProfileBehavior": {
            "disableBodyPruning": true
          },
          "request": {
            "auth": {
              "type": "oauth2"
            },
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/pet/findByTags?tags=consectetur amet sint labore&tags=Lorem Duis mollit nulla",
              "host": ["{{baseUrl}}"],
              "path": ["pet", "findByTags"],
              "query": [
                {
                  "key": "tags",
                  "value": "consectetur amet sint labore",
                  "description": "Tags to filter by"
                },
                {
                  "key": "tags",
                  "value": "Lorem Duis mollit nulla",
                  "description": "Tags to filter by"
                }
              ]
            },
            "description": "Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing."
          },
          "response": [
            {
              "id": "960d1ce6-c739-406e-a443-3aa225101c74",
              "name": "successful operation",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/pet/findByTags?tags=adipisicing Excepteur&tags=Excepteur commodo",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", "findByTags"],
                  "query": [
                    {
                      "key": "tags",
                      "value": "adipisicing Excepteur"
                    },
                    {
                      "key": "tags",
                      "value": "Excepteur commodo"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "[\n {\n  \"name\": \"doggie\",\n  \"photoUrls\": [\n   \"sint c\",\n   \"Excepteur aute\"\n  ],\n  \"id\": 10,\n  \"category\": {\n   \"id\": 1,\n   \"name\": \"Dogs\"\n  },\n  \"tags\": [\n   {\n    \"id\": 67269931,\n    \"name\": \"eiusmod amet esse dolor deserunt\"\n   },\n   {\n    \"id\": 59190849,\n    \"name\": \"eu et\"\n   }\n  ],\n  \"status\": \"pending\"\n },\n {\n  \"name\": \"doggie\",\n  \"photoUrls\": [\n   \"magna Lorem Excepteur velit\",\n   \"ea\"\n  ],\n  \"id\": 10,\n  \"category\": {\n   \"id\": 1,\n   \"name\": \"Dogs\"\n  },\n  \"tags\": [\n   {\n    \"id\": -80553543,\n    \"name\": \"l\"\n   },\n   {\n    \"id\": -59381976,\n    \"name\": \"eiusmod reprehenderit tempor\"\n   }\n  ],\n  \"status\": \"sold\"\n }\n]"
            },
            {
              "id": "cc29fc89-d553-4b17-9bcc-bcb807de48ed",
              "name": "Invalid tag value",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "description": "Added as a part of security scheme: oauth2",
                    "key": "Authorization",
                    "value": "<token>"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/pet/findByTags?tags=adipisicing Excepteur&tags=Excepteur commodo",
                  "host": ["{{baseUrl}}"],
                  "path": ["pet", "findByTags"],
                  "query": [
                    {
                      "key": "tags",
                      "value": "adipisicing Excepteur"
                    },
                    {
                      "key": "tags",
                      "value": "Excepteur commodo"
                    }
                  ]
                }
              },
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        }
      ],
      "id": "7f107d2c-23f3-41b1-9359-f481faed9fd7"
    },
    {
      "name": "store",
      "item": [
        {
          "name": "order",
          "item": [
            {
              "name": "{order Id}",
              "item": [
                {
                  "name": "Find purchase order by ID",
                  "id": "6af2f8c9-5482-4a2d-ae7e-c8c46b52cb1f",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/store/order/:orderId",
                      "host": ["{{baseUrl}}"],
                      "path": ["store", "order", ":orderId"],
                      "variable": [
                        {
                          "id": "71b772ee-f529-4644-b6c6-5984710dd6b1",
                          "key": "orderId",
                          "value": "-55912392",
                          "description": "(Required) ID of order that needs to be fetched"
                        }
                      ]
                    },
                    "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions"
                  },
                  "response": [
                    {
                      "id": "aef9627b-d14a-4eeb-b975-18690c434a3a",
                      "name": "successful operation",
                      "originalRequest": {
                        "method": "GET",
                        "header": [],
                        "url": {
                          "raw": "{{baseUrl}}/store/order/:orderId",
                          "host": ["{{baseUrl}}"],
                          "path": ["store", "order", ":orderId"],
                          "variable": [
                            {
                              "key": "orderId"
                            }
                          ]
                        }
                      },
                      "status": "OK",
                      "code": 200,
                      "_postman_previewlanguage": "json",
                      "header": [
                        {
                          "key": "Content-Type",
                          "value": "application/json"
                        }
                      ],
                      "cookie": [],
                      "responseTime": null,
                      "body": "{\n \"id\": 10,\n \"petId\": 198772,\n \"quantity\": 7,\n \"shipDate\": \"1974-05-22T03:19:15.698Z\",\n \"status\": \"approved\",\n \"complete\": true\n}"
                    },
                    {
                      "id": "302e1eaf-1e5f-4db0-81ad-45794f89f5a7",
                      "name": "Invalid ID supplied",
                      "originalRequest": {
                        "method": "GET",
                        "header": [],
                        "url": {
                          "raw": "{{baseUrl}}/store/order/:orderId",
                          "host": ["{{baseUrl}}"],
                          "path": ["store", "order", ":orderId"],
                          "variable": [
                            {
                              "key": "orderId"
                            }
                          ]
                        }
                      },
                      "status": "Bad Request",
                      "code": 400,
                      "_postman_previewlanguage": "text",
                      "header": [
                        {
                          "key": "Content-Type",
                          "value": "text/plain"
                        }
                      ],
                      "cookie": [],
                      "responseTime": null,
                      "body": ""
                    },
                    {
                      "id": "b108325b-2639-43b5-a4b3-6a66ad5e27aa",
                      "name": "Order not found",
                      "originalRequest": {
                        "method": "GET",
                        "header": [],
                        "url": {
                          "raw": "{{baseUrl}}/store/order/:orderId",
                          "host": ["{{baseUrl}}"],
                          "path": ["store", "order", ":orderId"],
                          "variable": [
                            {
                              "key": "orderId"
                            }
                          ]
                        }
                      },
                      "status": "Not Found",
                      "code": 404,
                      "_postman_previewlanguage": "text",
                      "header": [
                        {
                          "key": "Content-Type",
                          "value": "text/plain"
                        }
                      ],
                      "cookie": [],
                      "responseTime": null,
                      "body": ""
                    }
                  ]
                },
                {
                  "name": "Delete purchase order by ID",
                  "id": "e72aa9e5-8e42-45bf-9dea-f4864a1bc20d",
                  "request": {
                    "method": "DELETE",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/store/order/:orderId",
                      "host": ["{{baseUrl}}"],
                      "path": ["store", "order", ":orderId"],
                      "variable": [
                        {
                          "id": "bdcb9e5d-02ca-49eb-9350-db48fbafcbd3",
                          "key": "orderId",
                          "value": "-55912392",
                          "description": "(Required) ID of the order that needs to be deleted"
                        }
                      ]
                    },
                    "description": "For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors"
                  },
                  "response": [
                    {
                      "id": "eb7ff2f6-deca-4500-a90b-09e2ff05238d",
                      "name": "Invalid ID supplied",
                      "originalRequest": {
                        "method": "DELETE",
                        "header": [],
                        "url": {
                          "raw": "{{baseUrl}}/store/order/:orderId",
                          "host": ["{{baseUrl}}"],
                          "path": ["store", "order", ":orderId"],
                          "variable": [
                            {
                              "key": "orderId"
                            }
                          ]
                        }
                      },
                      "status": "Bad Request",
                      "code": 400,
                      "_postman_previewlanguage": "text",
                      "header": [
                        {
                          "key": "Content-Type",
                          "value": "text/plain"
                        }
                      ],
                      "cookie": [],
                      "responseTime": null,
                      "body": ""
                    },
                    {
                      "id": "4e9a1cb3-8349-4c8e-886c-6a9f195caa00",
                      "name": "Order not found",
                      "originalRequest": {
                        "method": "DELETE",
                        "header": [],
                        "url": {
                          "raw": "{{baseUrl}}/store/order/:orderId",
                          "host": ["{{baseUrl}}"],
                          "path": ["store", "order", ":orderId"],
                          "variable": [
                            {
                              "key": "orderId"
                            }
                          ]
                        }
                      },
                      "status": "Not Found",
                      "code": 404,
                      "_postman_previewlanguage": "text",
                      "header": [
                        {
                          "key": "Content-Type",
                          "value": "text/plain"
                        }
                      ],
                      "cookie": [],
                      "responseTime": null,
                      "body": ""
                    }
                  ]
                }
              ],
              "id": "3e0b036a-9965-4a3b-96a9-87331482f7f8"
            },
            {
              "name": "Place an order for a pet",
              "id": "70e24610-e375-4cc8-afd3-59438955ea9e",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "petId",
                      "value": "198772"
                    },
                    {
                      "key": "quantity",
                      "value": "7"
                    },
                    {
                      "key": "shipDate",
                      "value": "1974-05-22T03:19:15.698Z"
                    },
                    {
                      "key": "status",
                      "value": "approved",
                      "description": "Order Status"
                    },
                    {
                      "key": "complete",
                      "value": "true"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/store/order",
                  "host": ["{{baseUrl}}"],
                  "path": ["store", "order"]
                },
                "description": "Place a new order in the store"
              },
              "response": [
                {
                  "id": "72d23061-d9ef-4a5a-9cfd-528fda8eae27",
                  "name": "successful operation",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "id",
                          "value": "10"
                        },
                        {
                          "key": "petId",
                          "value": "198772"
                        },
                        {
                          "key": "quantity",
                          "value": "7"
                        },
                        {
                          "key": "shipDate",
                          "value": "1974-05-22T03:19:15.698Z"
                        },
                        {
                          "description": "Order Status",
                          "key": "status",
                          "value": "approved"
                        },
                        {
                          "key": "complete",
                          "value": "true"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{baseUrl}}/store/order",
                      "host": ["{{baseUrl}}"],
                      "path": ["store", "order"]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": "{\n \"id\": 10,\n \"petId\": 198772,\n \"quantity\": 7,\n \"shipDate\": \"1974-05-22T03:19:15.698Z\",\n \"status\": \"approved\",\n \"complete\": true\n}"
                },
                {
                  "id": "c7218d6e-11ad-4169-8480-74ddac00dbe6",
                  "name": "Invalid input",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "id",
                          "value": "10"
                        },
                        {
                          "key": "petId",
                          "value": "198772"
                        },
                        {
                          "key": "quantity",
                          "value": "7"
                        },
                        {
                          "key": "shipDate",
                          "value": "1974-05-22T03:19:15.698Z"
                        },
                        {
                          "description": "Order Status",
                          "key": "status",
                          "value": "approved"
                        },
                        {
                          "key": "complete",
                          "value": "true"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{baseUrl}}/store/order",
                      "host": ["{{baseUrl}}"],
                      "path": ["store", "order"]
                    }
                  },
                  "status": "Method Not Allowed",
                  "code": 405,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            }
          ],
          "id": "f20bd4f1-e45c-471b-a48c-3c87c271d35b"
        },
        {
          "name": "Returns pet inventories by status",
          "id": "12e27c33-fbfa-4f58-8d5e-0551b3abc4f3",
          "request": {
            "auth": {
              "type": "apikey",
              "apikey": [
                {
                  "key": "key",
                  "value": "api_key",
                  "type": "string"
                },
                {
                  "key": "value",
                  "value": true,
                  "type": "boolean"
                },
                {
                  "key": "in",
                  "value": "header",
                  "type": "string"
                }
              ]
            },
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/store/inventory",
              "host": ["{{baseUrl}}"],
              "path": ["store", "inventory"]
            },
            "description": "Returns a map of status codes to quantities"
          },
          "response": [
            {
              "id": "9696d132-cb50-44be-8b1e-b6bc2b9f25a2",
              "name": "successful operation",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "description": "Added as a part of security scheme: apikey",
                    "key": "api_key",
                    "value": "<API Key>"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/store/inventory",
                  "host": ["{{baseUrl}}"],
                  "path": ["store", "inventory"]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "{}"
            }
          ]
        }
      ],
      "id": "14e3e9a4-b857-402c-a5b5-68629181cefc"
    },
    {
      "name": "user",
      "item": [
        {
          "name": "{username}",
          "item": [
            {
              "name": "Get user by user name",
              "id": "3a727448-aa55-4843-8d6e-3b9d593a8c73",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/user/:username",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", ":username"],
                  "variable": [
                    {
                      "id": "11d49ab8-e947-4921-8c4f-75079998c6d7",
                      "key": "username",
                      "value": "occaecat",
                      "description": "(Required) The name that needs to be fetched. Use user1 for testing. "
                    }
                  ]
                }
              },
              "response": [
                {
                  "id": "ec03fcf1-d8a0-426e-baca-f8d86e4a2430",
                  "name": "successful operation",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": "{\n \"id\": 10,\n \"username\": \"theUser\",\n \"firstName\": \"John\",\n \"lastName\": \"James\",\n \"email\": \"john@email.com\",\n \"password\": \"12345\",\n \"phone\": \"12345\",\n \"userStatus\": 1\n}"
                },
                {
                  "id": "4fd2fc07-f4c3-4a5b-850f-ed6c46186d75",
                  "name": "Invalid username supplied",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                },
                {
                  "id": "c4c73677-e71f-4f4f-82d0-8c766301b717",
                  "name": "User not found",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            },
            {
              "name": "Update user",
              "id": "0f06c31c-2483-4275-90a4-12bd4487d33c",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/x-www-form-urlencoded"
                  }
                ],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "username",
                      "value": "theUser"
                    },
                    {
                      "key": "firstName",
                      "value": "John"
                    },
                    {
                      "key": "lastName",
                      "value": "James"
                    },
                    {
                      "key": "email",
                      "value": "john@email.com"
                    },
                    {
                      "key": "password",
                      "value": "12345"
                    },
                    {
                      "key": "phone",
                      "value": "12345"
                    },
                    {
                      "key": "userStatus",
                      "value": "1",
                      "description": "User Status"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/user/:username",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", ":username"],
                  "variable": [
                    {
                      "id": "03060cb6-96a8-4caa-b173-b2329f4ec859",
                      "key": "username",
                      "value": "occaecat",
                      "description": "(Required) name that need to be deleted"
                    }
                  ]
                },
                "description": "This can only be done by the logged in user."
              },
              "response": [
                {
                  "id": "3c4f377f-565e-4287-af6f-e794dda908c9",
                  "name": "successful operation",
                  "originalRequest": {
                    "method": "PUT",
                    "header": [],
                    "body": {
                      "mode": "urlencoded",
                      "urlencoded": [
                        {
                          "key": "id",
                          "value": "10"
                        },
                        {
                          "key": "username",
                          "value": "theUser"
                        },
                        {
                          "key": "firstName",
                          "value": "John"
                        },
                        {
                          "key": "lastName",
                          "value": "James"
                        },
                        {
                          "key": "email",
                          "value": "john@email.com"
                        },
                        {
                          "key": "password",
                          "value": "12345"
                        },
                        {
                          "key": "phone",
                          "value": "12345"
                        },
                        {
                          "description": "User Status",
                          "key": "userStatus",
                          "value": "1"
                        }
                      ]
                    },
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "Internal Server Error",
                  "code": 500,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            },
            {
              "name": "Delete user",
              "id": "34b36813-7f6d-43dd-8d0a-7066a7566440",
              "request": {
                "method": "DELETE",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/user/:username",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", ":username"],
                  "variable": [
                    {
                      "id": "5300ad84-5533-4491-8183-05073c5a7269",
                      "key": "username",
                      "value": "occaecat",
                      "description": "(Required) The name that needs to be deleted"
                    }
                  ]
                },
                "description": "This can only be done by the logged in user."
              },
              "response": [
                {
                  "id": "8340c160-6aa6-4f98-b7c6-307836f6e3a0",
                  "name": "Invalid username supplied",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                },
                {
                  "id": "85c82494-c6ea-4c5e-8d5a-35b3f454e91c",
                  "name": "User not found",
                  "originalRequest": {
                    "method": "DELETE",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/user/:username",
                      "host": ["{{baseUrl}}"],
                      "path": ["user", ":username"],
                      "variable": [
                        {
                          "key": "username"
                        }
                      ]
                    }
                  },
                  "status": "Not Found",
                  "code": 404,
                  "_postman_previewlanguage": "text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "text/plain"
                    }
                  ],
                  "cookie": [],
                  "responseTime": null,
                  "body": ""
                }
              ]
            }
          ],
          "id": "fb5bc388-e8ac-4378-b2e9-40444f81d89f"
        },
        {
          "name": "Create user",
          "id": "fd124870-be4e-4a65-b2fb-862fff63f8c0",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/x-www-form-urlencoded"
              }
            ],
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                {
                  "key": "id",
                  "value": "10"
                },
                {
                  "key": "username",
                  "value": "theUser"
                },
                {
                  "key": "firstName",
                  "value": "John"
                },
                {
                  "key": "lastName",
                  "value": "James"
                },
                {
                  "key": "email",
                  "value": "john@email.com"
                },
                {
                  "key": "password",
                  "value": "12345"
                },
                {
                  "key": "phone",
                  "value": "12345"
                },
                {
                  "key": "userStatus",
                  "value": "1",
                  "description": "User Status"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/user",
              "host": ["{{baseUrl}}"],
              "path": ["user"]
            },
            "description": "This can only be done by the logged in user."
          },
          "response": [
            {
              "id": "f42b6776-1bca-4c34-8cfa-c18756941f73",
              "name": "successful operation",
              "originalRequest": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "urlencoded",
                  "urlencoded": [
                    {
                      "key": "id",
                      "value": "10"
                    },
                    {
                      "key": "username",
                      "value": "theUser"
                    },
                    {
                      "key": "firstName",
                      "value": "John"
                    },
                    {
                      "key": "lastName",
                      "value": "James"
                    },
                    {
                      "key": "email",
                      "value": "john@email.com"
                    },
                    {
                      "key": "password",
                      "value": "12345"
                    },
                    {
                      "key": "phone",
                      "value": "12345"
                    },
                    {
                      "description": "User Status",
                      "key": "userStatus",
                      "value": "1"
                    }
                  ]
                },
                "url": {
                  "raw": "{{baseUrl}}/user",
                  "host": ["{{baseUrl}}"],
                  "path": ["user"]
                }
              },
              "status": "Internal Server Error",
              "code": 500,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "{\n \"id\": 10,\n \"username\": \"theUser\",\n \"firstName\": \"John\",\n \"lastName\": \"James\",\n \"email\": \"john@email.com\",\n \"password\": \"12345\",\n \"phone\": \"12345\",\n \"userStatus\": 1\n}"
            }
          ]
        },
        {
          "name": "Creates list of users with given input array",
          "id": "6f9e5c36-a23f-4e42-818e-6334680b0192",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "[\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    },\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    }\n]"
            },
            "url": {
              "raw": "{{baseUrl}}/user/createWithList",
              "host": ["{{baseUrl}}"],
              "path": ["user", "createWithList"]
            },
            "description": "Creates list of users with given input array"
          },
          "response": [
            {
              "id": "d1cec215-e461-4aca-8e6e-296a12788d37",
              "name": "Successful operation",
              "originalRequest": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "[\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    },\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    }\n]"
                },
                "url": {
                  "raw": "{{baseUrl}}/user/createWithList",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", "createWithList"]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "{\n \"id\": 10,\n \"username\": \"theUser\",\n \"firstName\": \"John\",\n \"lastName\": \"James\",\n \"email\": \"john@email.com\",\n \"password\": \"12345\",\n \"phone\": \"12345\",\n \"userStatus\": 1\n}"
            },
            {
              "id": "6be9f528-5c45-4267-86b8-0a20ff458aaa",
              "name": "successful operation",
              "originalRequest": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "[\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    },\n    {\n        \"id\": 10,\n        \"username\": \"theUser\",\n        \"firstName\": \"John\",\n        \"lastName\": \"James\",\n        \"email\": \"john@email.com\",\n        \"password\": \"12345\",\n        \"phone\": \"12345\",\n        \"userStatus\": 1\n    }\n]"
                },
                "url": {
                  "raw": "{{baseUrl}}/user/createWithList",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", "createWithList"]
                }
              },
              "status": "Internal Server Error",
              "code": 500,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        },
        {
          "name": "Logs user into the system",
          "id": "dd168f8c-7126-4116-a3c4-2cd622ea6503",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/user/login?username=occaecat&password=occaecat",
              "host": ["{{baseUrl}}"],
              "path": ["user", "login"],
              "query": [
                {
                  "key": "username",
                  "value": "occaecat",
                  "description": "The user name for login"
                },
                {
                  "key": "password",
                  "value": "occaecat",
                  "description": "The password for login in clear text"
                }
              ]
            }
          },
          "response": [
            {
              "id": "67e2814b-69af-442d-b313-aac0960a342c",
              "name": "successful operation",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/user/login?username=occaecat&password=occaecat",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", "login"],
                  "query": [
                    {
                      "key": "username",
                      "value": "occaecat"
                    },
                    {
                      "key": "password",
                      "value": "occaecat"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "disabled": false,
                  "description": "calls per hour allowed by the user",
                  "key": "X-Rate-Limit",
                  "value": "-55912392"
                },
                {
                  "disabled": false,
                  "description": "date in UTC when toekn expires",
                  "key": "X-Expires-After",
                  "value": "1963-11-19T21:41:16.834Z"
                },
                {
                  "key": "Content-Type",
                  "value": "application/json"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": "\"occaecat\""
            },
            {
              "id": "43f2d4a9-7cf0-4ee4-83fb-0cee40d1062c",
              "name": "Invalid username/password supplied",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/user/login?username=occaecat&password=occaecat",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", "login"],
                  "query": [
                    {
                      "key": "username",
                      "value": "occaecat"
                    },
                    {
                      "key": "password",
                      "value": "occaecat"
                    }
                  ]
                }
              },
              "status": "Bad Request",
              "code": 400,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        },
        {
          "name": "Logs out current logged in user session",
          "id": "bd16dede-3853-4d34-8a2c-e99ec0031be5",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/user/logout",
              "host": ["{{baseUrl}}"],
              "path": ["user", "logout"]
            }
          },
          "response": [
            {
              "id": "e84f3387-c1ee-4e25-8f55-91c2719fc09f",
              "name": "successful operation",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{baseUrl}}/user/logout",
                  "host": ["{{baseUrl}}"],
                  "path": ["user", "logout"]
                }
              },
              "status": "Internal Server Error",
              "code": 500,
              "_postman_previewlanguage": "text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "text/plain"
                }
              ],
              "cookie": [],
              "responseTime": null,
              "body": ""
            }
          ]
        }
      ],
      "id": "ee5f55a0-3ea5-4ace-9307-6811647194ee"
    }
  ],
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "id": "a972f8b6-c319-493e-8f2e-da9fcbb26678",
        "type": "text/javascript",
        "exec": [""]
      }
    },
    {
      "listen": "test",
      "script": {
        "id": "64817935-e08b-4261-ab8a-9e339d85fd55",
        "type": "text/javascript",
        "exec": [""]
      }
    }
  ],
  "variable": [
    {
      "id": "ed1e6c40-2881-464c-9188-55da52b45ef6",
      "key": "baseUrl",
      "value": "https://petstore3.swagger.io/api/v3"
    }
  ]
}
