{
	"info": {
		"_postman_id": "40acdd2c-1bdc-4c70-8ce6-4d9eb49c942a",
		"name": "SimpleIdServerManagement",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "574127"
	},
	"item": [
		{
			"name": "Manage one user",
			"item": [
				{
					"name": "Get access token",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "tokenName",
									"value": "Users",
									"type": "string"
								},
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "https://localhost:5001/master/token",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add one user",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = JSON.parse(responseBody);\r",
									"postman.setEnvironmentVariable(\"userId\", jsonData.id);"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"name\": \"name\",\r\n    \"firstname\": \"firstname\",\r\n    \"lastname\": \"lastname\",\r\n    \"email\": \"email\",\r\n    \"emailverified\": true,\r\n    \"claims\": { }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update user properties",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"email\": \"newEmail\",\r\n    \"emailverified\": false,\r\n    \"lastname\": \"newLastName\",\r\n    \"notification_mode\": \"email\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add UTF8(SHA256(password))",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"active\": true,\r\n  \"credential\": {\r\n    \"type\": \"pwd\",\r\n    \"value\": \"^�H��(\\u0004qQ��o��)'s`=\\rj���*\\u0011�r\\u001d\\u0015B�\"\r\n  }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}/credentials",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}",
								"credentials"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add BASE32(RANDOMKEY(20)) TOTP",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"active\": true,\r\n  \"credential\": {\r\n    \"type\": \"otp\",\r\n    \"otp_alg\": 1,\r\n    \"value\": \"OUH265BK7VXWIKO6GB76DZFOQQ62QUEZ\"\r\n  }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}/credentials",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}",
								"credentials"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add BASE32(RANDOMKEY(20)) HOTP",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"active\": true,\r\n  \"credential\": {\r\n    \"type\": \"otp\",\r\n    \"otp_alg\": 0,\r\n    \"value\": \"OUH265BK7VXWIKO6GB76DZFOQQ62QUEZ\"\r\n  }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}/credentials",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}",
								"credentials"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update claims",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"claims\": [\r\n    {\r\n      \"name\": \"phone_number\",\r\n      \"value\": \"0485\"\r\n    }\r\n  ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}/claims",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}",
								"claims"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Manage one group",
			"item": [
				{
					"name": "Get access token",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "tokenName",
									"value": "Groups",
									"type": "string"
								},
								{
									"key": "scope",
									"value": "openid groups",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "https://localhost:5001/master/token",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add one group",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = JSON.parse(responseBody);\r",
									"postman.setEnvironmentVariable(\"groupId\", jsonData.id);"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"name\": \"administrator\",\r\n  \"description\": \"administrator\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/groups",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"groups"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Manage one client",
			"item": [
				{
					"name": "Get access token",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid clients",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "Clients",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "https://localhost:5001/master/token",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add one machine client",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = JSON.parse(responseBody);\r",
									"postman.setEnvironmentVariable(\"clientId\", jsonData.client_id);"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": \"{{$guid}}\",\r\n    \"client_id\": \"otherMachineClient\",\r\n    \"client_secret\" : \"secret\",\r\n    \"client_type\": \"MACHINE\",\r\n    \"grant_types\": [\r\n        \"client_credentials\"\r\n    ],\r\n    \"token_endpoint_auth_method\": \"client_secret_post\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/clients",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"clients"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add one client role",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = JSON.parse(responseBody);\r",
									"postman.setEnvironmentVariable(\"roleId\", jsonData.name);"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid clients",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "Clients",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"name\": \"admin\",\r\n    \"description\": \"administrator\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/clients/{{clientId}}/roles",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"clients",
								"{{clientId}}",
								"roles"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Assign one client role to one group",
			"item": [
				{
					"name": "Assign client role to the group",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid groups",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"scope\": \"{{roleId}}\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/groups/{{groupId}}/roles",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"groups",
								"{{groupId}}",
								"roles"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Assign one group to a user",
			"item": [
				{
					"name": "Assign a group",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "openid users",
									"type": "string"
								},
								{
									"key": "client_authentication",
									"value": "body",
									"type": "string"
								},
								{
									"key": "tokenName",
									"value": "GetAccessToken",
									"type": "string"
								},
								{
									"key": "clientSecret",
									"value": "password",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "https://localhost:5001/master/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "authorization_code_with_pkce",
									"type": "string"
								},
								{
									"key": "clientId",
									"value": "postman",
									"type": "string"
								},
								{
									"key": "authUrl",
									"value": "https://localhost:5001/master/authorization",
									"type": "string"
								},
								{
									"key": "redirect_uri",
									"value": "http://localhost",
									"type": "string"
								},
								{
									"key": "addTokenTo",
									"value": "header",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://localhost:5001/master/users/{{userId}}/groups/{{groupId}}",
							"protocol": "https",
							"host": [
								"localhost"
							],
							"port": "5001",
							"path": [
								"master",
								"users",
								"{{userId}}",
								"groups",
								"{{groupId}}"
							]
						}
					},
					"response": []
				}
			]
		}
	]
}