{
	"info": {
		"_postman_id": "08dd0df5-2afb-46ba-b825-2825731c1cc4",
		"name": "SimplificaCI",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Auth by API token",
			"event": [
				{
					"listen": "test",
					"script": {
						"exec": [
							"var jsonData = JSON.parse(responseBody);\r",
							"pm.collectionVariables.set(\"BEARER_TOKEN\", jsonData.access_token);\r",
							""
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Access-Type",
						"value": "public",
						"type": "text"
					},
					{
						"key": "Api-Token",
						"value": "{{TOKEN_USER}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "grant_type",
							"value": "password",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/security/token",
					"host": [
						"{{URL}}"
					],
					"path": [
						"security",
						"token"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get all groups",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "formdata",
					"formdata": []
				},
				"url": {
					"raw": "{{URL}}/public/v1/groups?page=1",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"groups"
					],
					"query": [
						{
							"key": "page",
							"value": "1"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Get group by name",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "formdata",
					"formdata": []
				},
				"url": {
					"raw": "{{URL}}/public/v1/groups?page=1",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"groups"
					],
					"query": [
						{
							"key": "page",
							"value": "1"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Get all employees",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					},
					{
						"key": "page",
						"value": "2",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{URL}}/public/v1/persons",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"persons"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get employee by CPF",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{URL}}/public/v1/persons/{{cpf}}",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"persons",
						"{{cpf}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get employee by Group",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{URL}}/public/v1/personsbygroup/{{group_name}}",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"personsbygroup",
						"{{group_name}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update an employee",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "fullname",
							"value": "John Doe",
							"type": "text"
						},
						{
							"key": "email",
							"value": "john@doe.com",
							"type": "text"
						},
						{
							"key": "email2",
							"value": "john@doe2.com",
							"type": "text"
						},
						{
							"key": "email3",
							"value": "john@doe3.com",
							"type": "text"
						},
						{
							"key": "gender",
							"value": "M",
							"type": "text"
						},
						{
							"key": "birthdate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "admissiondate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "terminationdate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "vacationinitialdate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "vacationfinaldate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "occupation",
							"value": "Vendedor",
							"type": "text"
						},
						{
							"key": "isactive",
							"value": "Y",
							"type": "text"
						},
						{
							"key": "domainuser",
							"value": "CORP/John",
							"type": "text"
						},
						{
							"key": "registration",
							"value": "ABC0000DFG000",
							"type": "text"
						},
						{
							"key": "phonenumber",
							"value": "99 99999 9999",
							"type": "text"
						},
						{
							"key": "phoneextensionnumber",
							"value": "9999999",
							"type": "text"
						},
						{
							"key": "groups",
							"value": "Group 1; Group 2; Group N",
							"type": "text"
						},
						{
							"key": "unities",
							"value": "UND1; UND2; UNDN",
							"type": "text"
						},
						{
							"key": "leader",
							"value": "",
							"type": "text"
						}
					],
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{URL}}/public/v1/person/{{cpf}}",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"person",
						"{{cpf}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Restore variable informations from Datastore",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{{URL}}/public/v1/datastore/{{group_name}}",
					"host": [
						"{{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"datastore",
						"{{group_name}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update a Datastore variable",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "name",
							"value": "ServerStatus",
							"type": "text"
						},
						{
							"key": "value",
							"value": "ALIVE",
							"type": "text"
						},
						{
							"key": "date",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/datastore",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"datastore"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update Datastore for Employees",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json; charset=utf-8",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\r\n    \"datastoreEmployees\": [\r\n        {\r\n            \"employeeIdentifier\": 123456,\r\n            \"fieldName\": \"Data validade EPI\",\r\n            \"fieldValue\": \"21/11/2025\"\r\n        },\r\n        {\r\n            \"employeeIdentifier\": 123457,\r\n            \"fieldName\": \"Data validade EPI\",\r\n            \"fieldValue\": \"20/12/2025\"\r\n        },\r\n        {\r\n            \"employeeIdentifier\": 123458,\r\n            \"fieldName\": \"Data validade EPI\",\r\n            \"fieldValue\": \"20/11/2025\"\r\n        }\r\n    ]\r\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{URL}}/public/v1/datastore/employees",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"datastore",
						"employees"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get general metrics",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/general",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"general"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get announcement metrics by Source Unities",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/sourceunities",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"sourceunities"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get announcement metrics by Destination Unities",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/destinationunities",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"destinationunities"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get announcement metrics by groups",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/groups",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"groups"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get announcement metrics by links",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/destinationunities",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"destinationunities"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get metrics by announcements",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "codigo_comunicado",
							"value": "123",
							"type": "text"
						},
						{
							"key": "disparado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "disparado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "enviado_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_de",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						},
						{
							"key": "periodo_ate",
							"value": "01/01/2018 12:00:00",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/analytics/announcements",
					"host": [
						"{{URL}}"
					],
					"path": [
						"analytics",
						"announcements"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Categories",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "name",
							"value": "John Doe",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/categories",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"categories"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update a category",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "name",
							"value": "John Doe",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/categories",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"categories"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Editorials",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "name",
							"value": "John Doe",
							"type": "text"
						},
						{
							"key": "color",
							"value": "#000000",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/editorials",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"editorials"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update an editorial",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "name",
							"value": "John Doe",
							"type": "text"
						},
						{
							"key": "color",
							"value": "#000000",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/editorials",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"editorials"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get articles",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "editorialid",
							"value": "1",
							"type": "text"
						},
						{
							"key": "title",
							"value": "article title",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/articles",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"articles"
					]
				}
			},
			"response": []
		},
		{
			"name": "Insert or Update an article",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/x-www-form-urlencoded",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{BEARER_TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "urlencoded",
					"urlencoded": [
						{
							"key": "id",
							"value": "1",
							"type": "text"
						},
						{
							"key": "editorialid",
							"value": "1",
							"type": "text"
						},
						{
							"key": "title",
							"value": "article title",
							"type": "text"
						},
						{
							"key": "resume",
							"value": "article resume",
							"type": "text"
						},
						{
							"key": "highlighted",
							"value": "true",
							"type": "text"
						},
						{
							"key": "urlredirectto",
							"value": "https://www.google.com/",
							"type": "text"
						},
						{
							"key": "image",
							"value": "https://www.google.com.br/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{URL}}/public/v1/articles",
					"host": [
						"{{URL}}"
					],
					"path": [
						"public",
						"v1",
						"articles"
					]
				}
			},
			"response": []
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "URL",
			"value": "https://api.simplificaci.com.br"
		},
		{
			"key": "TOKEN_USER",
			"value": "User token from SimplificaCI integration page"
		},
		{
			"key": "cpf",
			"value": "Employee CPF"
		},
		{
			"key": "group_name",
			"value": "Group Name"
		},
		{
			"key": "BEARER_TOKEN",
			"value": ""
		}
	]
}
