Validation
Before making any request to the API, the validation token must be obtained for the user and password indicated.
Última actualización
¿Te fue útil?
Before making any request to the API, the validation token must be obtained for the user and password indicated.
Última actualización
¿Te fue útil?
Example:
Basic + (user:pass) en base64
GET /api/login HTTP/1.1
Host: server:<port>
Authorization: text
Accept: */*
Return of the token
{
"token": "{JWT Token}"
}
Users must be registered in A3ERP: Customers, Representatives, Suppliers, Carriers, Persons or Operators.
Example:
https://servidor:5555/api/validacion/user/admin/password/adminpass
Not case sensitive
Case sensitive
Bearer + JWT_token
GET /api/validacion/user/{usuario}/password/{clave} HTTP/1.1
Host: server:<port>
Authorization: text
Accept: */*
Return Code and Type
{
"Codigo": " 1",
"Tipo": "Transportistas"
}