Hello!,
I have an authentication endpoint that I have to give parameters in the Auth Header (user+password+tenant) and this returns a .json :
{
"datosJSON": null,
"errorMsg": null,
"esLista": null,
"nombreTipoDatos": "string",
"resultado": "OK",
"token": "1F05141D0C141D6478767C7E717B107C7B7C70787B797C797973707C7B79787C7F"
}
Then I have to use the token field as an Auth Header in the requests to the other methods, how can I pass it to it?
Until now I have used CustomerAPIs with the standard bearer token, or oauth 2.0, but I notice that in this case they made an endpoint that expects the Token in the Auth Header and I don't know how to pass it to it correctly.
Thanks!!!,
Regards.