Skip to main content
Version: Latest

Listado de operadores logísticos

Se consultan los identificadores y nombres de los operadores logísticos que estan asociados al usuario

Request 🚀

url

https://app.aveonline.co/api/box/v1.0/transportadora.php

Method

POST

Content-Type: application/json

Params JSON

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

Ejemplo

{
"tipo":"listarTransportadorasPorEmpresaAuth",
"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9eyJzZXNzaW9uIjo5MzY4MiwiZXhwIjoxNjIzMzU5MTUwLCJhcHJvYmFkb3MiOls2MDc3g34ybhjrnkefmjuX0.r9NpCiuYhVU3m1W5KS0fHLtfM3NjLPZbbM2AEFgCNHo",
"id": 6077236
}

Response 📄

Success

  • status String Estado del resultado
  • message String Mensaje de respuesta
  • transportadoras Array Object -> [{}]
    • id Number Identificador de la transportadora para los procesos con AVE
    • text String Nombre de la transportadora

Ejemplo

{
"status": "ok",
"message": "registros encontrados",
"transportadoras": [
{
"id": 29,
"text": "ENVIA"
},
{
"id": 1018,
"text": "MENSAJEROS URBANOS"
},
{
"id": 1022,
"text": "SAFERBO"
},
{
"id": 33,
"text": "SERVIENTREGA"
},
{
"id": 1010,
"text": "TCC SA"
}
]
}

Error

No se encuentran datos asociados

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

Credenciales incorrectas o token expirado

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