{
	"info": {
		"_postman_id": "e02aec70-de8d-4317-b4b0-0ab508e2edea",
		"name": "Scorpion API Sample Calls \"Starter Pack\" Postman Collection",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "17013923",
		"_collection_link": "https://mr-whiskers.postman.co/workspace/My-Workspace~d60e5616-01cb-45b7-8ef4-4d9739b7ca46/collection/17013923-e02aec70-de8d-4317-b4b0-0ab508e2edea?action=share&source=collection_link&creator=17013923"
	},
	"item": [
		{
			"name": "Create New Delivery POST",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{Basic}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "///Note: this is a sample examinee information schema and contains form input fields for the examinee.\n///the response of this call will return a examinee_id, delivery_id, proctor_token, and launch_token.\n{\n    \"examinee_info\": {\n        \"First Name\": \"Amos\",\n        \"Last Name\": \"Burton\",\n        \"Email\": \"amos.burton@example.com\"\n    }\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "https://scorpion.caveon.com/api/exams/{{exam_id}}/deliveries",
					"protocol": "https",
					"host": [
						"scorpion",
						"caveon",
						"com"
					],
					"path": [
						"api",
						"exams",
						"{{exam_id}}",
						"deliveries"
					]
				}
			},
			"response": []
		},
		{
			"name": "Create Proctor Events POST",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{Basic}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "///Event to emit to the delivery session. Must be pause, resume, suspend, stabilize, or override\n\n{\n    \"event\": \"pause\"\n}\n\n",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "https://scorpion.caveon.com/api/exams/{{exam_id}}/deliveries/{{delivery_id}}",
					"protocol": "https",
					"host": [
						"scorpion",
						"caveon",
						"com"
					],
					"path": [
						"api",
						"exams",
						"{{exam_id}}",
						"deliveries",
						"{{delivery_id}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "GET Delivery By Delivery ID",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Authorization",
						"value": "{{Basic}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "https://scorpion.caveon.com/api/exams/{{exam_id}}/deliveries/{{delivery_id}}",
					"protocol": "https",
					"host": [
						"scorpion",
						"caveon",
						"com"
					],
					"path": [
						"api",
						"exams",
						"{{exam_id}}",
						"deliveries",
						"{{delivery_id}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Updating A Delivery- Update Time Limit For A Delivery PUT",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Authorization",
						"value": "{{Basic}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "///note: this update will override the existing time limit\n\n{\n    \"time_limit\": 60000\n}\n",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "https://scorpion.caveon.com/api/exams/{{exam_id}}/deliveries/{{delivery_id}}",
					"protocol": "https",
					"host": [
						"scorpion",
						"caveon",
						"com"
					],
					"path": [
						"api",
						"exams",
						"{{exam_id}}",
						"deliveries",
						"{{delivery_id}}"
					]
				}
			},
			"response": []
		}
	]
}