Expandir la barra de logros de la comunidad.

RESUELTAS

HTTP API call from a workflow with an API KEY authentication

Avatar

Level 2

Hello all,

I need to invoke a HTTP API call having an API key as authentication method
from a workflow (Javascript)

I'm using 

HttpClientRequest

and I set NO header so far

I get as reponse:
Unauthorized: no API Key provided. Please contact technical support

Can you help me build this code?

Thank you!
Sal

Temas

Los temas ayudan a categorizar el contenido de la comunidad e incrementan la posibilidad de encontrar contenido relevante.

API
1 solución aceptada

Avatar

Respuesta correcta de
Community Advisor

Hello @salvatore_dange 

 

You can pass the authorization header like this:

var req = new HttpClientRequest('https://' + url + myPath)      
req.header["Authorization"] = "API_KEY_HERE";

 


     Manoj
     Find me on LinkedIn

Ver la solución en mensaje original publicado

1 Respuesta

Avatar

Respuesta correcta de
Community Advisor

Hello @salvatore_dange 

 

You can pass the authorization header like this:

var req = new HttpClientRequest('https://' + url + myPath)      
req.header["Authorization"] = "API_KEY_HERE";

 


     Manoj
     Find me on LinkedIn