{
	"info": {
		"_postman_id": "4ae1a732-2c0c-416d-a3a5-dfb3384cd125",
		"name": "SigninTesting",
		"description": "Tests frontend APIs. ",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"_postman_id": "2f215f7e-9dc5-4d44-ba3b-7d1ae9358c4a",
			"name": "Correct Sign In",
			"event": [
				{
					"listen": "test",
					"script": {
						"id": "a1e36c8b-c891-4f71-bf2c-8b37301c9939",
						"type": "text/javascript",
						"exec": [
							"tests[\"HTTP Status code is 200\"] = responseCode.code === 200;",
							"",
							"var response = JSON.parse(responseBody);",
							"",
							"tests[\"statusMessage is Success\"] = response.statusMessage === \"Success\";",
							"console.log('response' ,response.statusMessage);"
						]
					}
				}
			],
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "contentType",
						"value": "application/json; charset=utf-8"
					},
					{
						"key": "EmailAddress",
						"value": "user116@healthlevel.com",
						"disabled": true
					},
					{
						"key": "Password",
						"value": "Stat2018$",
						"disabled": true
					},
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\r\n  \"EmailAddress\": \"user116@healthlevel.com\",\r\n  \"Password\": \"Stat2018$\"\r\n}"
				},
				"url": {
					"raw": "{{url}}/API/Account/v3/SignIn",
					"host": [
						"{{url}}"
					],
					"path": [
						"API",
						"Account",
						"v3",
						"SignIn"
					]
				},
				"description": "Signs in"
			},
			"response": []
		},
		{
			"_postman_id": "6754f5b7-f865-457c-ab5f-6542a9b70837",
			"name": "Incorrect Email",
			"event": [
				{
					"listen": "test",
					"script": {
						"id": "0fe02d38-53c5-4123-a780-b05140502d18",
						"type": "text/javascript",
						"exec": [
							"tests[\"HTTP Status code is 200\"] = responseCode.code === 200;",
							"",
							"var response = JSON.parse(responseBody);",
							"",
							"tests[\"statusMessage is not Success\"] = response.statusMessage !== \"Success\";"
						]
					}
				}
			],
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "contentType",
						"value": "application/json; charset=utf-8"
					},
					{
						"key": "EmailAddress",
						"value": "user116@healthlevel.com",
						"disabled": true
					},
					{
						"key": "Password",
						"value": "Stat2018$",
						"disabled": true
					},
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\r\n  \"EmailAddress\": \"asdf@healthlevel.com\",\r\n  \"Password\": \"Stat2018$\"\r\n}"
				},
				"url": {
					"raw": "{{url}}/API/Account/v3/SignIn",
					"host": [
						"{{url}}"
					],
					"path": [
						"API",
						"Account",
						"v3",
						"SignIn"
					]
				}
			},
			"response": []
		},
		{
			"_postman_id": "1b4906c9-93b3-47c8-90f8-f00a2457be99",
			"name": "Incorrect Password",
			"event": [
				{
					"listen": "test",
					"script": {
						"id": "db0269f7-23fc-449c-9351-b3d0958f86f8",
						"type": "text/javascript",
						"exec": [
							"tests[\"HTTP Status code is 200\"] = responseCode.code === 200;",
							"",
							"var response = JSON.parse(responseBody);",
							"",
							"tests[\"statusMessage is not Success\"] = response.statusMessage !== \"Success\";"
						]
					}
				}
			],
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "contentType",
						"value": "application/json; charset=utf-8"
					},
					{
						"key": "EmailAddress",
						"value": "user116@healthlevel.com",
						"disabled": true
					},
					{
						"key": "Password",
						"value": "Stat2018$",
						"disabled": true
					},
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\r\n  \"EmailAddress\": \"asdf@healthlevel.com\",\r\n  \"Password\": \"stat2018$\"\r\n}"
				},
				"url": {
					"raw": "{{url}}/API/Account/v3/SignIn",
					"host": [
						"{{url}}"
					],
					"path": [
						"API",
						"Account",
						"v3",
						"SignIn"
					]
				}
			},
			"response": []
		}
	]
}