Skip to main content
Version: 1.x(Legacy)

Listado de agentes

Agentes o sucursales asociados al usuario registrado en aveonline

Request 🚀

url

https://aveonline.co/api/comunes/v1.0/agentes.php

Method

POST

Content-Type: application/json

Params JSON

  • tipo* String Enrutador de la API, "listarAgentesPorEmpresaAuth"
  • token* String Token recibido en la Autenticación con vigencia de una hora
  • idempresa* Number Identificador del usuario dentro de AVEONLINE, se obtiene en la Autenticación

Ejemplo

{
"tipo": "listarAgentesPorEmpresaAuth",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI2345jbheyJzZXNzaW9uIjo5MzY2MywiZXhwIjoxNjIzMzU4MjMwLCJhcHJvYmFkb3MiOlsvgfewbh7834Dc3XX0.rVX0d6u4JiYo15e-YjIVfogH3_F00DtwF5Tjtzwp2B8",
"idempresa": 15289
}

Response 📄

Success

  • status String Estado del resultado
  • message String Mensaje de respuesta
  • agentes Array Object -> [{}]
    • id Number Identificador de agente
    • nombre String Nombre del agente
    • email String Correo electrónico asociado al agente
    • direccion String Dirección del agente
    • telefono String Número telefónico del agente
    • idciudad String Ciudad del agente

Ejemplo

{
"status": "ok",
"message": "registros encontrados",
"agentes": [
{
"id": 10535,
"nombre": "Admin wehbf",
"email": "admiqen@handymail.com",
"direccion": "Calle 43 #88",
"telefono": "452436369",
"idciudad": "MEDELLIN(ANTIOQUIA)"
},
{
"id": 111231,
"nombre": "DEs",
"email": "adewrtmin@handymail.com",
"direccion": "Calle 49 #88",
"telefono": "45634369",
"idciudad": "BOGOTA(CUNDINAMARCA)"
},
{
"id": 123117,
"nombre": "oqenj ave",
"email": "admreiin@handymail.com",
"direccion": "Carrera 23 #88",
"telefono": "456345369",
"idciudad": "MANIZALES(CALDAS)"
}
]
}

Error

No se encuentran datos asociados

{
"status": "error",
"message": "registros no encontrados",
"estados": []
}

Credenciales incorrectas o token expirado

{
"status": "error",
"message": "credenciales incorrectas"
}