{
	"info": {
		"_postman_id": "7de7976d-e2ff-4c28-9002-345caba1b8fd",
		"name": "Shielder API",
		"description": "Complete API collection for ShieldR Parental Control Application",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "18066294",
		"_collection_link": "https://baramdatsol.postman.co/workspace/Baramdat-Solutions~49fc44dc-158a-43e2-8d2e-36987ec6f1c1/collection/18066294-7de7976d-e2ff-4c28-9002-345caba1b8fd?action=share&source=collection_link&creator=18066294"
	},
	"item": [
		{
			"name": "Authentication",
			"item": [
				{
					"name": "Register Parent",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"email\": \"parent@example.com\",\n    \"password\": \"Password123\",\n    \"name\": \"Parent Name\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/auth/register",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"auth",
								"register"
							]
						},
						"description": "Register a new parent account"
					},
					"response": []
				},
				{
					"name": "Login Parent",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"email\": \"parent@example.com\",\n    \"password\": \"Password123\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/auth/login",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"auth",
								"login"
							]
						},
						"description": "Login as a parent"
					},
					"response": []
				},
				{
					"name": "Get Profile",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/auth/profile",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"auth",
								"profile"
							]
						},
						"description": "Get parent profile information"
					},
					"response": []
				}
			]
		},
		{
			"name": "Children Management",
			"item": [
				{
					"name": "Apps",
					"item": [
						{
							"name": "Get Installed Apps",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/apps",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"apps"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						},
						{
							"name": "Update Apps",
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"appName\": \"Updated App Name\"\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/apps/com.example.app1",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"apps",
										"com.example.app1"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						},
						{
							"name": "Delete App",
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"apps\": [\n    {\n      \"packageName\": \"com.example.app1\",\n      \"appName\": \"Example App 1\"\n    },\n    {\n      \"packageName\": \"com.example.app2\", \n      \"appName\": \"Example App 2\"\n    }\n  ]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/apps",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"apps"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						}
					]
				},
				{
					"name": "Website",
					"item": [
						{
							"name": "Restrict",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"websiteUrl\": \"https://newsocial-media.com\",\n  \"isBlocked\": true,\n  \"timeLimit\": 60,\n  \"allowedHours\": [{\"start\": \"14:00\", \"end\": \"16:00\"}]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/website-restrictions",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"website-restrictions"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						},
						{
							"name": "Get Restrictions",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"websiteUrl\": \"https://social-media.com\",\n  \"isBlocked\": true,\n  \"timeLimit\": 60,\n  \"allowedHours\": [{\"start\": \"14:00\", \"end\": \"16:00\"}]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/website-restrictions",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"website-restrictions"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						},
						{
							"name": "Update Restrictions",
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"websiteUrl\": \"https://example.com\",\n    \"isBlocked\": true,\n    \"timeLimit\": 120\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/website-restrictions/685ab5f34f69372692990e93",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"website-restrictions",
										"685ab5f34f69372692990e93"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						},
						{
							"name": "Update Restrictions Copy",
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer {{token}}"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"websiteUrl\": \"https://social-media.com\"\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/website-restrictions/685ab5a34f69372692990e84",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"api",
										"child",
										"68510f174fec2b1a527bee84",
										"website-restrictions",
										"685ab5a34f69372692990e84"
									]
								},
								"description": "Get child's statistics and activity data"
							},
							"response": []
						}
					]
				},
				{
					"name": "Register Child",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"name\": \"Child Name\",\n  \"email\": \"child@example.com\",\n  \"password\": \"password123\",\n  \"age\": 12,\n  \"deviceId\": \"device123\",\n  \"fcmToken\": \"fcm_token_here\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child"
							]
						},
						"description": "Register a new child account"
					},
					"response": []
				},
				{
					"name": "Login Child",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "   {\n     \"email\": \"child@example.com\",\n     \"password\": \"password123\"\n   }"
						},
						"url": {
							"raw": "{{base_url}}/api/child/login",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"login"
							]
						},
						"description": "Login as a child using device ID"
					},
					"response": []
				},
				{
					"name": "Get All Children",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/child",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child"
							]
						},
						"description": "Get all children associated with the parent"
					},
					"response": []
				},
				{
					"name": "Get Child by ID",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84"
							]
						},
						"description": "Get specific child details"
					},
					"response": []
				},
				{
					"name": "Update Child",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Daniyal Aziz\",\n    \"age\": 13,\n    \"screenTimeLimit\": 120\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84"
							]
						},
						"description": "Update child profile information"
					},
					"response": []
				},
				{
					"name": "Update Screen Time Limit",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"screenTimeLimit\": 120\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/screen-time",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"screen-time"
							]
						},
						"description": "Update child's screen time limit"
					},
					"response": []
				},
				{
					"name": "Update Restrictions",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"apps\": [\n        {\n            \"packageName\": \"com.example.app\",\n            \"timeLimit\": 60\n        }\n    ],\n    \"websites\": [\"blocked-site.com\"],\n    \"contentFilters\": [\"violence\", \"adult\"]\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/restrictions",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"restrictions"
							]
						},
						"description": "Update child's app and content restrictions"
					},
					"response": []
				},
				{
					"name": "Add Routine",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Study Time\",\n    \"schedule\": [\n        {\n            \"dayOfWeek\": 1,\n            \"startTime\": \"16:00\",\n            \"endTime\": \"18:00\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/routines",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"routines"
							]
						},
						"description": "Add a new routine for the child"
					},
					"response": []
				},
				{
					"name": "Add Goal",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"title\": \"Complete Homework\",\n    \"description\": \"Finish math homework\",\n    \"reward\": \"1 hour of gaming\",\n    \"deadline\": \"2024-03-20T18:00:00Z\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/children/:childId/goals",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"children",
								":childId",
								"goals"
							],
							"variable": [
								{
									"key": "childId",
									"value": "child_id_here"
								}
							]
						},
						"description": "Add a new goal for the child"
					},
					"response": []
				},
				{
					"name": "Update Location",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"latitude\": 40.7128,\n    \"longitude\": -74.0060,\n    \"address\": \"123 Main St\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/children/:childId/location",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"children",
								":childId",
								"location"
							],
							"variable": [
								{
									"key": "childId",
									"value": "child_id_here"
								}
							]
						},
						"description": "Update child's location"
					},
					"response": []
				},
				{
					"name": "Get Child Stats",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/children/:childId/stats",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"children",
								":childId",
								"stats"
							],
							"variable": [
								{
									"key": "childId",
									"value": "child_id_here"
								}
							]
						},
						"description": "Get child's statistics and activity data"
					},
					"response": []
				}
			]
		},
		{
			"name": "Parent",
			"item": [
				{
					"name": "Register Child",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"name\": \"Child Name\",\n  \"email\": \"child@example.com\",\n  \"password\": \"password123\",\n  \"age\": 12,\n  \"deviceId\": \"device123\",\n  \"fcmToken\": \"fcm_token_here\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child"
							]
						},
						"description": "Register a new child account"
					},
					"response": []
				},
				{
					"name": "Login Child",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "   {\n     \"email\": \"child@example.com\",\n     \"password\": \"password123\"\n   }"
						},
						"url": {
							"raw": "{{base_url}}/api/child/login",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"login"
							]
						},
						"description": "Login as a child using device ID"
					},
					"response": []
				},
				{
					"name": "Get All Children",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/parent/children",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"parent",
								"children"
							]
						},
						"description": "Get all children associated with the parent"
					},
					"response": []
				},
				{
					"name": "Get Child by ID",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84"
							]
						},
						"description": "Get specific child details"
					},
					"response": []
				},
				{
					"name": "Update Child",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Daniyal Aziz\",\n    \"age\": 13,\n    \"screenTimeLimit\": 120\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84"
							]
						},
						"description": "Update child profile information"
					},
					"response": []
				},
				{
					"name": "Update Screen Time Limit",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"screenTimeLimit\": 120\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/screen-time",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"screen-time"
							]
						},
						"description": "Update child's screen time limit"
					},
					"response": []
				},
				{
					"name": "Update Restrictions",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"apps\": [\n        {\n            \"packageName\": \"com.example.app\",\n            \"timeLimit\": 60\n        }\n    ],\n    \"websites\": [\"blocked-site.com\"],\n    \"contentFilters\": [\"violence\", \"adult\"]\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/restrictions",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"restrictions"
							]
						},
						"description": "Update child's app and content restrictions"
					},
					"response": []
				},
				{
					"name": "Update Restrictions Copy",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"apps\": [\n        {\n            \"packageName\": \"com.example.app\",\n            \"timeLimit\": 60\n        }\n    ],\n    \"websites\": [\"blocked-site.com\"],\n    \"contentFilters\": [\"violence\", \"adult\"]\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/parent/tips",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"parent",
								"tips"
							]
						},
						"description": "Update child's app and content restrictions"
					},
					"response": []
				},
				{
					"name": "Add Routine",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Study Time\",\n    \"schedule\": [\n        {\n            \"dayOfWeek\": 1,\n            \"startTime\": \"16:00\",\n            \"endTime\": \"18:00\"\n        }\n    ]\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/routines",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"routines"
							]
						},
						"description": "Add a new routine for the child"
					},
					"response": []
				},
				{
					"name": "Add Goal",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"title\": \"Complete Homework\",\n    \"description\": \"Finish math homework\",\n    \"reward\": \"1 hour of gaming\",\n    \"deadline\": \"2024-03-20T18:00:00Z\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/goals",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"goals"
							]
						},
						"description": "Add a new goal for the child"
					},
					"response": []
				},
				{
					"name": "Update Location",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"latitude\": 40.7128,\n    \"longitude\": -74.0060,\n    \"address\": \"123 Main St\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/location",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"location"
							]
						},
						"description": "Update child's location"
					},
					"response": []
				},
				{
					"name": "Get Child Stats",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{token}}"
							}
						],
						"url": {
							"raw": "{{base_url}}/api/child/68510f174fec2b1a527bee84/stats",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"child",
								"68510f174fec2b1a527bee84",
								"stats"
							]
						},
						"description": "Get child's statistics and activity data"
					},
					"response": []
				}
			]
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2ODUxMGQ5YjY0NWE3ODBmYzdmMWM4YjkiLCJlbWFpbCI6InBhcmVudEBleGFtcGxlLmNvbSIsInJvbGUiOiJwYXJlbnQiLCJpYXQiOjE3NTA3Njg0MzEsImV4cCI6MTc1MDc4MjgzMX0.JjBZnd5Gf_FEZ3fUntngF_T0IJjCsAa91qMxTkFpXIw",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "base_url",
			"value": "http://localhost:4000",
			"type": "string"
		},
		{
			"key": "token",
			"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2ODUxMGQ5YjY0NWE3ODBmYzdmMWM4YjkiLCJlbWFpbCI6InBhcmVudEBleGFtcGxlLmNvbSIsInJvbGUiOiJwYXJlbnQiLCJpYXQiOjE3NTAxNDI0NTgsImV4cCI6MTc1MDE1Njg1OH0.6V5ItGfE9PHaIb2-QGkuLOMHp_Kt6t8TpNBcdI-Nc3c",
			"type": "string"
		}
	]
}