{
	"info": {
		"_postman_id": "053fed4a-9a47-44cd-a4f9-00396673bbae",
		"name": "cear_web",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "19723385"
	},
	"item": [
		{
			"name": "blogs",
			"item": [
				{
					"name": "index",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/blogs",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"blogs"
							]
						}
					},
					"response": []
				},
				{
					"name": "store",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"link\": \"https://ejemplo.com/articulo-1\",\r\n  \"id\": 1,\r\n  \"enabled\": true,\r\n  \"title\": \"Ejemplo de artículo\",\r\n  \"content\": \"Este es el contenido del artículo de ejemplo que muestra cómo estructurar los datos.\",\r\n  \"keywords\": \"ejemplo, json, artículo, demo\",\r\n  \"links\": [\r\n    {\r\n      \"title\": \"Documentación JSON\",\r\n      \"url\": \"https://www.json.org/json-es.html\"\r\n    },\r\n    {\r\n      \"title\": \"Más ejemplos\",\r\n      \"url\": \"https://ejemplo.com/mas-ejemplos\"\r\n    }\r\n  ],\r\n  \"date\": \"2023-05-15T12:00:00.000Z\",\r\n  \"image\": [\r\n    {\r\n      \"file\": \"imagen1.jpg\",\r\n      \"dimension\": 100\r\n    }\r\n  ],\r\n  \"slug\": \"articulo-ejemplo\",\r\n  \"user_id\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/blogs",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"blogs"
							]
						}
					},
					"response": []
				},
				{
					"name": "update",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"link\": \"https://ejemplo.com/articulo-1\",\r\n    \"id\": 1,\r\n    \"enabled\": true,\r\n    \"title\": \"Ejemplo de artículo\",\r\n    \"content\": \"Este es el contenido del artículo de ejemplo que muestra cómo estructurar los datos.\",\r\n    \"keywords\": \"ejemplo, json, artículo, demo\",\r\n    \"links\": [\r\n        {\r\n            \"title\": \"Documentación JSON\",\r\n            \"url\": \"https://www.json.org/json-es.html\"\r\n        },\r\n        {\r\n            \"title\": \"Más ejemplos\",\r\n            \"url\": \"https://ejemplo.com/mas-ejemplos\"\r\n        }\r\n    ],\r\n    \"date\": \"2023-05-15T12:00:00.000Z\",\r\n    \"image\": [\r\n        {\r\n            \"file\": \"imagen1.jpg\",\r\n            \"dimension\": 100\r\n        }\r\n    ],\r\n    \"slug\": \"articulo-ejemplo\",\r\n    \"user_id\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/blogs/63",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"blogs",
								"63"
							]
						}
					},
					"response": []
				},
				{
					"name": "show",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/blogs/1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"blogs",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "destroy",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/blogs/63",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"blogs",
								"63"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "auth",
			"item": [
				{
					"name": "login",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"email\":\"admin@cl.com\",\r\n    \"password\":\"cearPE123\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/auth/login",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"auth",
								"login"
							]
						}
					},
					"response": []
				},
				{
					"name": "forgot-password",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"email\":\"admin@cl.com\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/auth/forgot-password",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"auth",
								"forgot-password"
							]
						}
					},
					"response": []
				},
				{
					"name": "change-password",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"email\":\"admin@cl.com\",\r\n    \"password\":\"passwordexample\",\r\n    \"repeat_password\":\"23232323\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/auth/change-password",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"auth",
								"change-password"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "calculadora",
			"item": [
				{
					"name": "tasas",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/calculadora/tasas",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"calculadora",
								"tasas"
							]
						}
					},
					"response": []
				},
				{
					"name": "indeterminada",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/calculadora/indeterminada",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"calculadora",
								"indeterminada"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "common",
			"item": [
				{
					"name": "proxy",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/proxy?url=https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.whiskas.com.mx%2Fcuidados%2Fnuevo-gato-adopcion%2Fcomo-cuidar-un-gato-bebe&psig=AOvVaw1MEWM4dS7EQOjX3R4Zxpm6&ust=1750607182276000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCLix3Yvugo4DFQAAAAAdAAAAABAE",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"proxy"
							],
							"query": [
								{
									"key": "url",
									"value": "https://www.google.com/url?sa=i"
								},
								{
									"key": "url",
									"value": "https%3A%2F%2Fwww.whiskas.com.mx%2Fcuidados%2Fnuevo-gato-adopcion%2Fcomo-cuidar-un-gato-bebe"
								},
								{
									"key": "psig",
									"value": "AOvVaw1MEWM4dS7EQOjX3R4Zxpm6"
								},
								{
									"key": "ust",
									"value": "1750607182276000"
								},
								{
									"key": "source",
									"value": "images"
								},
								{
									"key": "cd",
									"value": "vfe"
								},
								{
									"key": "opi",
									"value": "89978449"
								},
								{
									"key": "ved",
									"value": "0CBQQjRxqFwoTCLix3Yvugo4DFQAAAAAdAAAAABAE"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "tipo-cambio",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/tipo-cambio",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"tipo-cambio"
							]
						}
					},
					"response": []
				},
				{
					"name": "download-pdf",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "file",
									"type": "file",
									"src": "/C:/Users/crear/OneDrive/Escritorio/BROCHURE CENTRO DE ARBITRAJE.pdf"
								}
							]
						},
						"url": {
							"raw": "{{WEB_URL}}/api/download-pdf",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"download-pdf"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "denuncias",
			"item": [
				{
					"name": "index",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/denuncias",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"denuncias"
							]
						}
					},
					"response": []
				},
				{
					"name": "store",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"description\": \"Est qui quia quo de\",\r\n    \"date_desde\": \"1970-06-28T00:00:00.000Z\",\r\n    \"date_hasta\": \"2020-06-03T00:00:00.000Z\",\r\n    \"perjuicio\": null,\r\n    \"isRunning\": true,\r\n    \"involucrados\": \"Fugit quis exercita\",\r\n    \"empresa_involucrados\": \"Qui eos optio volup\",\r\n    \"email\": \"vecot@mailinator.com\",\r\n    \"pruebas\": null,\r\n    \"isPerjuicio\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/denuncias",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"denuncias"
							]
						}
					},
					"response": []
				},
				{
					"name": "show",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/denuncias/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"denuncias",
								"2"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "ia",
			"item": [
				{
					"name": "find-error",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"message\":\"Hola me llamo, y creo que esto se escribe asi.\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/ia/find-error",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"ia",
								"find-error"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "pages",
			"item": [
				{
					"name": "store",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"url\":\"/denuncia\",\r\n    \"title\":\"Denuncia\",\r\n    \"description\":\"Descripcion de la pagina denuncia\",\r\n    \"keywords\":\"denunia\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/pages",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"pages"
							]
						}
					},
					"response": []
				},
				{
					"name": "index",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/pages",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"pages"
							]
						}
					},
					"response": []
				},
				{
					"name": "show",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/pages/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"pages",
								"2"
							]
						}
					},
					"response": []
				},
				{
					"name": "update",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"url\":\"/denuncia\",\r\n    \"title\":\"Denuncia\",\r\n    \"description\":\"Descripcion de la pagina denuncia\",\r\n    \"keywords\":\"denunia\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/pages/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"pages",
								"2"
							]
						}
					},
					"response": []
				},
				{
					"name": "destroy",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/pages/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"pages",
								"2"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "paginators",
			"item": [
				{
					"name": "users",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/users",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"users"
							]
						}
					},
					"response": []
				},
				{
					"name": "solicitudes",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/solicitudes",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"solicitudes"
							]
						}
					},
					"response": []
				},
				{
					"name": "visitantes-pages",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/visitantes-pages?page_id=2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"visitantes-pages"
							],
							"query": [
								{
									"key": "page_id",
									"value": "2"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "blogs",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/blogs",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"blogs"
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales"
							]
						}
					},
					"response": []
				},
				{
					"name": "visitantes-pages-ip",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/visitantes-pages-ip?page_id=2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"visitantes-pages-ip"
							],
							"query": [
								{
									"key": "page_id",
									"value": "2"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "visitantes",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/visitantes",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"visitantes"
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales_universitarias",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales_universitarias?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales_universitarias"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales_postuniversitarias",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales_postuniversitarias?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales_postuniversitarias"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales_docencias",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales_docencias?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales_docencias"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales_experiencias",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales_experiencias?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales_experiencias"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "profesionales_capacitaciones",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesionales_capacitaciones?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesionales_capacitaciones"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "profesional_laudos",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/profesional_laudos?profesional_id=1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"profesional_laudos"
							],
							"query": [
								{
									"key": "profesional_id",
									"value": "1"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "archivos",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/archivos?page_id=2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"archivos"
							],
							"query": [
								{
									"key": "page_id",
									"value": "2"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "denuncias",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/paginator/denuncias",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"paginator",
								"denuncias"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "profesionales",
			"item": [
				{
					"name": "index",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales"
							]
						}
					},
					"response": []
				},
				{
					"name": "all",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales/all",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales",
								"all"
							]
						}
					},
					"response": []
				},
				{
					"name": "store",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"nombre\": \"Tempore nisi dolor2 \",\r\n    \"apellidoPat\": \"Voluptatem Quisquam\",\r\n    \"apellidoMat\": \"Aut aute dolores acc\",\r\n    \"profesion\": \"Dolore a mollit simi\",\r\n    \"dni\": \"Nostrud vero non rec\",\r\n    \"colegiatura\": \"Hic et et eos vel s\",\r\n    \"fecha_incorporacion\": null,\r\n    \"fecha_incorporacion_adjudicador\": null,\r\n    \"fecha_incorporacion_perito\": null,\r\n    \"is_rna\": false,\r\n    \"estado\": true,\r\n    \"photo\": null,\r\n    \"cv\": null,\r\n    \"isArbitro\": false,\r\n    \"isAdjudicador\": false,\r\n    \"isPerito\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales"
							]
						}
					},
					"response": []
				},
				{
					"name": "update",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"nombre\": \"Tempore nisi dolor2 \",\r\n    \"apellidoPat\": \"Voluptatem Quisquam\",\r\n    \"apellidoMat\": \"Aut aute dolores acc\",\r\n    \"profesion\": \"Dolore a mollit simi\",\r\n    \"dni\": \"Nostrud vero non rec\",\r\n    \"colegiatura\": \"Hic et et eos vel s\",\r\n    \"fecha_incorporacion\": null,\r\n    \"fecha_incorporacion_adjudicador\": null,\r\n    \"fecha_incorporacion_perito\": null,\r\n    \"is_rna\": false,\r\n    \"estado\": true,\r\n    \"photo\": null,\r\n    \"cv\": null,\r\n    \"isArbitro\": false,\r\n    \"isAdjudicador\": false,\r\n    \"isPerito\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales",
								"2"
							]
						}
					},
					"response": []
				},
				{
					"name": "destroy",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales",
								"2"
							]
						}
					},
					"response": []
				},
				{
					"name": "show",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"nombre\": \"Tempore nisi dolor2 \",\r\n    \"apellidoPat\": \"Voluptatem Quisquam\",\r\n    \"apellidoMat\": \"Aut aute dolores acc\",\r\n    \"profesion\": \"Dolore a mollit simi\",\r\n    \"dni\": \"Nostrud vero non rec\",\r\n    \"colegiatura\": \"Hic et et eos vel s\",\r\n    \"fecha_incorporacion\": null,\r\n    \"fecha_incorporacion_adjudicador\": null,\r\n    \"fecha_incorporacion_perito\": null,\r\n    \"is_rna\": false,\r\n    \"estado\": true,\r\n    \"photo\": null,\r\n    \"cv\": null,\r\n    \"isArbitro\": false,\r\n    \"isAdjudicador\": false,\r\n    \"isPerito\": false\r\n}"
						},
						"url": {
							"raw": "{{WEB_URL}}/api/profesionales/2",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"profesionales",
								"2"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "solicitudes",
			"item": [
				{
					"name": "store",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"message\": \"string\",\r\n  \"email\": \"string@mail.com\",\r\n  \"fullname\": \"string\",\r\n  \"cellphone\": \"string\",\r\n  \"area_de_consulta\": \"Arbitraje\",\r\n  \"accepted\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/solicitudes",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"solicitudes"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "users",
			"item": [
				{
					"name": "store",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"name\": \"Ethan\",\r\n    \"lastname\": \"Smith\",\r\n    \"email\": \"ethan.smith@example.com\",\r\n    \"password\": \"p@ssw0rd123\",\r\n    \"enabled\": true,\r\n    \"photo\": null,\r\n    \"role\": \"worker\",\r\n    \"roles\": [\r\n        \"blogs\",\r\n        \"profesionals\",\r\n        \"ia\"\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/users",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"users"
							]
						}
					},
					"response": []
				},
				{
					"name": "index",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/users",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"users"
							]
						}
					},
					"response": []
				},
				{
					"name": "show",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/users/3",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"users",
								"3"
							]
						}
					},
					"response": []
				},
				{
					"name": "update",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"name\": \"Ethan\",\r\n    \"lastname\": \"Smith\",\r\n    \"email\": \"ethan.smith@example.com\",\r\n    \"password\": \"p@ssw0rd123\",\r\n    \"enabled\": true,\r\n    \"photo\": null,\r\n    \"role\": \"worker\",\r\n    \"roles\": [\r\n        \"blogs\",\r\n        \"profesionals\",\r\n        \"ia\"\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{WEB_URL}}/api/users/1",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"users",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "destroy",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/users/3",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"users",
								"3"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "visitantes",
			"item": [
				{
					"name": "chart",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/visitantes/chart?type_web=web_principal",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"visitantes",
								"chart"
							],
							"query": [
								{
									"key": "type_web",
									"value": "web_principal"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "doughnut",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{BEARER_TOKEN}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{WEB_URL}}/api/visitantes/doughnut?type_web=web_principal",
							"host": [
								"{{WEB_URL}}"
							],
							"path": [
								"api",
								"visitantes",
								"doughnut"
							],
							"query": [
								{
									"key": "type_web",
									"value": "web_principal"
								}
							]
						}
					},
					"response": []
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "WEB_URL",
			"value": "",
			"type": "string"
		},
		{
			"key": "BEARER_TOKEN",
			"value": "",
			"type": "default"
		}
	]
}