{
	"variables": [],
	"info": {
		"name": "SampleCollection",
		"_postman_id": "e1d5aaad-e138-44a3-3997-6ece7a3ca979",
		"description": "",
		"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
	},
	"item": [
		{
			"name": "Login",
			"request": {
				"url": "{{protocol}}://{{host}}:{{port}}{{loginpath}}",
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"description": ""
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "username",
							"value": "Demo",
							"type": "text",
							"enabled": true
						},
						{
							"key": "password",
							"value": "",
							"type": "text",
							"enabled": true
						}
					]
				},
				"description": ""
			},
			"response": []
		},
		{
			"name": "Get Users",
			"request": {
				"url": "{{protocol}}://{{host}}:{{port}}{{v1path}}/entry/User",
				"method": "GET",
				"header": [
					{
						"key": "Authorization",
						"value": "{{prefix}} {{jwt}}",
						"description": ""
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"description": ""
					}
				],
				"body": {},
				"description": ""
			},
			"response": []
		},
		{
			"name": "Create",
			"request": {
				"url": "{{protocol}}://{{host}}:{{port}}{{v1path}}/entry/zzTestRESTAPIWorkflow",
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{prefix}} {{jwt}}",
						"description": ""
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"description": ""
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n      \"values\": {\n        \"Status__c\": \"New\",\n        \"Submitter__c\": \"Demo\",\n        \"Short Description__c\": \"test 123\"\n        }\n}"
				},
				"description": ""
			},
			"response": []
		},
		{
			"name": "Update record ",
			"request": {
				"url": "{{protocol}}://{{host}}:{{port}}{{v1path}}/entry/zzTestRESTAPIWorkflow/000000000000001",
				"method": "PUT",
				"header": [
					{
						"key": "Authorization",
						"value": "{{prefix}} {{jwt}}",
						"description": ""
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"description": ""
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n      \"values\": {\n        \"Status__c\": \"New\",\n        \"Submitter__c\": \"Demo\",\n        \"Short Description__c\": \"test 123 abc\"\n        }\n}"
				},
				"description": ""
			},
			"response": []
		},
		{
			"name": "Logout",
			"request": {
				"url": "{{protocol}}://{{host}}:{{port}}/api/jwt/logout",
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "Basic RGVtbzo=",
						"description": ""
					}
				],
				"body": {},
				"description": ""
			},
			"response": []
		}
	]
}