{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/localhost"
        }
    ],
    "info": {
        "name": "Alvamex API Collection",
        "_postman_id": "7891cfe3-30e1-40e5-b855-9ff899b15355",
        "description": "Colecci\u00f3n completa de endpoints para desarrollo y testing",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Autenticaci\u00f3n",
            "description": "\nAPIs para registro, login y gesti\u00f3n de autenticaci\u00f3n de usuarios",
            "item": [
                {
                    "name": "Registrar nuevo usuario",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Juan P\u00e9rez\",\"email\":\"juan@example.com\",\"password\":\"Password123!\",\"password_confirmation\":\"consequatur\",\"phone_number\":\"+52 555 123 4567\",\"device_id\":\"abc123def456\",\"device_name\":\"Samsung Galaxy S21\",\"device_type\":\"android\",\"app_version\":\"1.0.0\",\"is_offline_capable\":true,\"preferences\":{\"theme\":\"dark\",\"language\":\"bzvrb\",\"notifications\":true,\"auto_sync\":true,\"sync_frequency\":\"realtime\"},\"accept_terms\":true,\"accept_privacy\":true,\"timezone\":\"America\\\/Punta_Arenas\",\"referral_code\":\"znkygloigmkwxphlv\"}"
                        },
                        "description": "Crea una nueva cuenta de usuario con autenticaci\u00f3n Sanctum.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Usuario registrado exitosamente\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Juan P\u00e9rez\",\n      \"email\": \"juan@example.com\",\n      \"status\": \"active\"\n    },\n    \"token\": \"1|abcdefghijklmnop\",\n    \"offline_token\": \"xyz789\",\n    \"session_id\": 1,\n    \"expires_at\": \"2024-02-15T10:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Iniciar sesi\u00f3n",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"juan@example.com\",\"password\":\"Password123!\",\"device_id\":\"abc123def456\",\"device_name\":\"Samsung Galaxy S21\",\"device_type\":\"android\",\"app_version\":\"1.0.0\",\"revoke_other_tokens\":false,\"is_offline_capable\":false,\"remember_me\":true,\"timezone\":\"Europe\\\/Moscow\",\"language\":\"rbyic\"}"
                        },
                        "description": "Autentica un usuario y retorna un token de acceso.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Inicio de sesi\u00f3n exitoso\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Juan P\u00e9rez\",\n      \"email\": \"juan@example.com\"\n    },\n    \"token\": \"1|abcdefghijklmnop\",\n    \"offline_token\": \"xyz789\",\n    \"session_id\": 1,\n    \"expires_at\": \"2024-02-15T10:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Credenciales incorrectas\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Solicitar recuperaci\u00f3n de contrase\u00f1a\nPOST \/api\/auth\/forgot-password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/forgot-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/forgot-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\",\"device_id\":\"opfuudtdsufvyvddqamni\",\"device_type\":\"android\",\"app_version\":\"hfqcoynlazghdtqtq\",\"language\":\"xbajw\",\"timezone\":\"Africa\\\/Kampala\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Resetear contrase\u00f1a con token\nPOST \/api\/auth\/reset-password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\",\"token\":\"consequatur\",\"password\":\"[2UZ5ij-e\\\/dl4\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verificar email del usuario\nGET \/api\/auth\/verify-email\/{token}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/verify-email\/:token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/verify-email\/:token",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obtener perfil del usuario autenticado\nGET \/api\/auth\/profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cerrar sesi\u00f3n",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-Session-ID",
                                "value": "string ID de la sesi\u00f3n activa. Example: 123"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "Cierra la sesi\u00f3n actual y revoca el token de acceso."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Sesi\u00f3n cerrada exitosamente\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cerrar todas las sesiones del usuario\nPOST \/api\/auth\/logout-all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/logout-all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/logout-all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Renovar token de autenticaci\u00f3n\nPOST \/api\/auth\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Validar y verificar estado del token\nGET \/api\/auth\/validate-token\nPOST \/api\/auth\/validate-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/validate-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/validate-token"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DEPRECATED: Usar validateToken en su lugar\nGET \/api\/auth\/check-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/check-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/check-token"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Usuarios",
            "description": "\nAPIs para gesti\u00f3n de usuarios y perfiles",
            "item": [
                {
                    "name": "Listar usuarios",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "N\u00famero de p\u00e1gina.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Registros por p\u00e1gina (max 100).",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "juan",
                                    "description": "B\u00fasqueda por nombre o email.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "active",
                                    "description": "Filtrar por estado (active, inactive, suspended).",
                                    "disabled": false
                                },
                                {
                                    "key": "role",
                                    "value": "user",
                                    "description": "Filtrar por rol (user, admin, moderator).",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_by",
                                    "value": "created_at",
                                    "description": "Ordenar por campo.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_order",
                                    "value": "desc",
                                    "description": "Orden (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/users?page=1&per_page=15&search=juan&status=active&role=user&sort_by=created_at&sort_order=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page\":73,\"per_page\":13,\"search\":\"qeopfuudtdsufvyvddqam\",\"status\":\"suspended\",\"role\":\"user\",\"sort_by\":\"name\",\"sort_order\":\"desc\"}"
                        },
                        "description": "Obtiene la lista de usuarios (solo administradores)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 1,\n        \"name\": \"Juan P\u00e9rez\",\n        \"email\": \"juan@example.com\",\n        \"status\": \"active\",\n        \"role\": \"user\"\n      }\n    ],\n    \"total\": 50\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Sin permisos para ver usuarios\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mostrar usuario espec\u00edfico\nGET \/api\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Actualizar perfil del usuario\nPUT \/api\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"email\":\"kunde.eloisa@example.com\",\"phone_number\":\"hfqcoynlazghdtqtq\",\"password\":\"(!Cs'YAKYLk4>SJIrIV\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Eliminar usuario (soft delete)\nDELETE \/api\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Actualizar preferencias del usuario\nPUT \/api\/users\/{id}\/preferences",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id\/preferences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id\/preferences",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"preferences\":[],\"merge\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Subir foto de perfil\nPOST \/api\/users\/{id}\/profile-photo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id\/profile-photo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id\/profile-photo",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "photo",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtener sesiones activas del usuario\nGET \/api\/users\/{id}\/sessions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id\/sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id\/sessions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Revocar sesi\u00f3n espec\u00edfica\nDELETE \/api\/users\/{id}\/sessions\/{sessionId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:id\/sessions\/:sessionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:id\/sessions\/:sessionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Sincronizaci\u00f3n",
            "description": "\nAPIs para sincronizaci\u00f3n de datos entre la aplicaci\u00f3n m\u00f3vil y el servidor",
            "item": [
                {
                    "name": "Cargar datos desde el cliente",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/upload",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/upload"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sync_items\":[{\"sync_type\":\"CREATE\",\"table_name\":\"questionnaires\",\"data\":{},\"timestamp\":1234567890}],\"device_id\":\"abc123\",\"session_id\":\"xyz789\"}"
                        },
                        "description": "Recibe datos del cliente Android para sincronizar con el servidor."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Sincronizaci\u00f3n completada\",\n  \"data\": {\n    \"processed\": 5,\n    \"failed\": 0\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Enviar actualizaciones al cliente\nPOST \/api\/sync\/download",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/download",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/download"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"last_sync\":73,\"device_id\":\"consequatur\",\"tables\":[\"notifications\"],\"limit\":16}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtener estado de sincronizaci\u00f3n\nGET \/api\/sync\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Gestionar cola de sincronizaci\u00f3n\nPOST \/api\/sync\/queue",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/queue",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/queue"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"list\",\"sync_type\":\"UPDATE\",\"table_name\":\"consequatur\",\"queue_id\":17,\"priority\":2,\"object_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Sincronizaci\u00f3n masiva (batch)\nPOST \/api\/sync\/bulk",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/bulk"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"operations\":[{\"type\":\"download\",\"data\":\"consequatur\"}],\"device_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Resolver conflictos de datos\nPOST \/api\/sync\/conflict",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/conflict",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/conflict"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"conflicts\":[{\"sync_log_id\":17,\"resolution\":\"skip\"}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Endpoint espec\u00edfico para cuestionarios\nGET \/api\/sync\/questionnaires\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/questionnaires\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/questionnaires\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "General",
            "description": "",
            "item": [
                {
                    "name": "GET api\/sync\/logs\/{userId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/logs\/:userId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/logs\/:userId",
                            "variable": [
                                {
                                    "id": "userId",
                                    "key": "userId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/sync\/clear\/{userId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/clear\/:userId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/clear\/:userId",
                            "variable": [
                                {
                                    "id": "userId",
                                    "key": "userId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/sync\/questionnaires\/debug\/{userId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sync\/questionnaires\/debug\/:userId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sync\/questionnaires\/debug\/:userId",
                            "variable": [
                                {
                                    "id": "userId",
                                    "key": "userId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/questionnaires\/android\/list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/android\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/android\/list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/questionnaires\/android\/unsynced",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/android\/unsynced",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/android\/unsynced"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/me",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/me\/preferences",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/preferences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/preferences"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/me\/profile-photo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/profile-photo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/profile-photo"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/me\/sessions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/sessions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me\/questionnaires",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/questionnaires",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/questionnaires"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me\/questionnaires\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/questionnaires\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/questionnaires\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me\/questionnaires\/recent",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/questionnaires\/recent",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/questionnaires\/recent"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/me\/questionnaires\/pending-sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/me\/questionnaires\/pending-sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/me\/questionnaires\/pending-sync"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/admin\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/admin\/questionnaires\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/questionnaires\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/questionnaires\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/admin\/cleanup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/cleanup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/cleanup"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/admin\/users\/bulk-action",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admin\/users\/bulk-action",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admin\/users\/bulk-action"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/notifications\/mark-read\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/notifications\/mark-read\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/notifications\/mark-read\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mark read."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/config",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/config",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/config"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/config\/questionnaires",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/config\/questionnaires",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/config\/questionnaires"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/{fallbackPlaceholder}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/:fallbackPlaceholder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/:fallbackPlaceholder",
                            "variable": [
                                {
                                    "id": "fallbackPlaceholder",
                                    "key": "fallbackPlaceholder",
                                    "value": "2UZ5i",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "58"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Endpoint no encontrado\",\"error_code\":\"NOT_FOUND\",\"available_endpoints\":{\"auth\":\"\\\/api\\\/auth\\\/{login,register,logout}\",\"users\":\"\\\/api\\\/users\",\"sync\":\"\\\/api\\\/sync\\\/{upload,download,status}\",\"questionnaires\":\"\\\/api\\\/questionnaires\",\"me\":\"\\\/api\\\/me\",\"admin\":\"\\\/api\\\/admin\"},\"questionnaire_endpoints\":{\"list\":\"GET \\\/api\\\/questionnaires\",\"create\":\"POST \\\/api\\\/questionnaires\",\"show\":\"GET \\\/api\\\/questionnaires\\\/{id}\",\"update\":\"PUT \\\/api\\\/questionnaires\\\/{id}\",\"delete\":\"DELETE \\\/api\\\/questionnaires\\\/{id}\",\"stats\":\"GET \\\/api\\\/questionnaires\\\/stats\\\/summary\",\"search\":\"GET \\\/api\\\/questionnaires\\\/search\\\/query\",\"export\":\"GET \\\/api\\\/questionnaires\\\/export\\\/data\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "CEDIS",
            "description": "\nAPIs para gestionar centros de distribuci\u00f3n (CEDIS)",
            "item": [
                {
                    "name": "Obtener CEDIS activos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cedis\/active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cedis\/active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "Retorna \u00fanicamente los CEDIS que est\u00e1n marcados como activos, ordenados alfab\u00e9ticamente por nombre.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"nombre\": \"CEDIS Ciudad de M\u00e9xico\",\n      \"codigo\": \"CDMX-001\",\n      \"activo\": true,\n      \"created_at\": \"2024-01-15T10:00:00.000000Z\",\n      \"updated_at\": \"2024-01-15T10:00:00.000000Z\"\n    },\n    {\n      \"id\": 2,\n      \"nombre\": \"CEDIS Guadalajara\",\n      \"codigo\": \"GDL-001\",\n      \"activo\": true,\n      \"created_at\": \"2024-01-15T10:00:00.000000Z\",\n      \"updated_at\": \"2024-01-15T10:00:00.000000Z\"\n    }\n  ],\n  \"total\": 2\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Error al obtener los CEDIS activos\",\n  \"error\": \"Database connection failed\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Listar todos los CEDIS",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cedis",
                            "query": [
                                {
                                    "key": "activo",
                                    "value": "1",
                                    "description": "Filtrar por estado activo\/inactivo.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "CDMX",
                                    "description": "Buscar por nombre o c\u00f3digo.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/cedis?activo=1&search=CDMX"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "Obtiene la lista completa de CEDIS con opciones de filtrado.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"nombre\": \"CEDIS Ciudad de M\u00e9xico\",\n      \"codigo\": \"CDMX-001\",\n      \"activo\": true,\n      \"created_at\": \"2024-01-15T10:00:00.000000Z\",\n      \"updated_at\": \"2024-01-15T10:00:00.000000Z\"\n    }\n  ],\n  \"total\": 1\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Par\u00e1metros inv\u00e1lidos\",\n  \"errors\": {\n    \"activo\": [\"El campo activo debe ser verdadero o falso\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obtener un CEDIS espec\u00edfico",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cedis\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cedis\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID del CEDIS."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "Recupera la informaci\u00f3n detallada de un CEDIS por su ID.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"id\": 1,\n    \"nombre\": \"CEDIS Ciudad de M\u00e9xico\",\n    \"codigo\": \"CDMX-001\",\n    \"activo\": true,\n    \"created_at\": \"2024-01-15T10:00:00.000000Z\",\n    \"updated_at\": \"2024-01-15T10:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"CEDIS no encontrado\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Cuestionarios",
            "description": "\nAPIs para gesti\u00f3n de cuestionarios con soporte de sincronizaci\u00f3n offline",
            "item": [
                {
                    "name": "Listar cuestionarios",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "N\u00famero de p\u00e1gina.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Registros por p\u00e1gina (max 100).",
                                    "disabled": false
                                },
                                {
                                    "key": "folio",
                                    "value": "F-001",
                                    "description": "Filtrar por folio.",
                                    "disabled": false
                                },
                                {
                                    "key": "cedis",
                                    "value": "CDMX",
                                    "description": "Filtrar por CEDIS.",
                                    "disabled": false
                                },
                                {
                                    "key": "cuadrilla",
                                    "value": "A",
                                    "description": "Filtrar por cuadrilla.",
                                    "disabled": false
                                },
                                {
                                    "key": "sync_status",
                                    "value": "synced",
                                    "description": "Estado de sincronizaci\u00f3n (synced, unsynced, error).",
                                    "disabled": false
                                },
                                {
                                    "key": "date_from",
                                    "value": "2024-01-01",
                                    "description": "date Fecha desde.",
                                    "disabled": false
                                },
                                {
                                    "key": "date_to",
                                    "value": "2024-01-31",
                                    "description": "date Fecha hasta.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_by",
                                    "value": "created_at",
                                    "description": "Ordenar por (created_at, questionnaire_timestamp, folio).",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_order",
                                    "value": "desc",
                                    "description": "Orden (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/questionnaires?page=1&per_page=20&folio=F-001&cedis=CDMX&cuadrilla=A&sync_status=synced&date_from=2024-01-01&date_to=2024-01-31&sort_by=created_at&sort_order=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "Obtiene la lista de cuestionarios del usuario con filtros y paginaci\u00f3n."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"questionnaires\": [\n      {\n        \"id\": 1,\n        \"folio\": \"F-001\",\n        \"cedis\": \"CDMX\",\n        \"sync_status\": \"synced\"\n      }\n    ],\n    \"total\": 100,\n    \"page\": 1,\n    \"per_page\": 20\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Crear nuevo cuestionario\nPOST \/api\/questionnaires",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mostrar cuestionario espec\u00edfico\nGET \/api\/questionnaires\/{questionnaire}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "33",
                                    "description": "The ID of the questionnaire."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Actualizar cuestionario\nPUT\/PATCH \/api\/questionnaires\/{questionnaire}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "33",
                                    "description": "The ID of the questionnaire."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Actualizar cuestionario\nPUT\/PATCH \/api\/questionnaires\/{questionnaire}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/:questionnaire_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/:questionnaire_id",
                            "variable": [
                                {
                                    "id": "questionnaire_id",
                                    "key": "questionnaire_id",
                                    "value": "33",
                                    "description": "The ID of the questionnaire."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Eliminar cuestionario\nDELETE \/api\/questionnaires\/{questionnaire}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "33",
                                    "description": "The ID of the questionnaire."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtener estad\u00edsticas de cuestionarios\nGET \/api\/questionnaires\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/stats\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/stats\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Buscar cuestionarios\nGET \/api\/questionnaires\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/search\/query",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/search\/query"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Exportar cuestionarios\nGET \/api\/questionnaires\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/export\/data",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/export\/data"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obtener cuestionarios duplicados por folio\nGET \/api\/questionnaires\/duplicates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/duplicates\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/duplicates\/list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Validate the given request with the given rules.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/validate\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/validate\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Marcar cuestionarios como sincronizados\nPOST \/api\/questionnaires\/mark-synced",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/bulk\/mark-synced",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/bulk\/mark-synced"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verificar existencia y estado de sincronizaci\u00f3n de un cuestionario por folio y cedis\nGET \/api\/questionnaires\/verify\/{folio}?cedis=CDMX",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/verify\/:folio",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/verify\/:folio",
                            "variable": [
                                {
                                    "id": "folio",
                                    "key": "folio",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Resetear estado de sincronizaci\u00f3n\nPOST \/api\/questionnaires\/{questionnaire}\/reset-sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/questionnaires\/:questionnaire_id\/reset-sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/questionnaires\/:questionnaire_id\/reset-sync",
                            "variable": [
                                {
                                    "id": "questionnaire_id",
                                    "key": "questionnaire_id",
                                    "value": "33",
                                    "description": "The ID of the questionnaire."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "X-Requested-With",
                                "value": "XMLHttpRequest"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}