Consuming Rest service with Bearer Authentication type ?

Hi,

I’m trying to consume an open source REST API with authentication type as Bearer token not JWT Bearer. The service provider provided the token key to use when hitting the service.

I was able to successfully test the service in Postman by selecting the Authentication type as Bearer but Pega offers only Basic, NTLM and oAuth Authentication types for REST API.

I tried passing the token in the header but no luck. So I wanted to check and get suggestion if someone has already implemented such scenario.

Thanks,

Vyas Raman Loka.

Did you try to use the below format? Where Authorization is a key in the Header

Authorization: Bearer

Ex: Authorization: Bearer 3454qkQADAFGAERAEA

@AbhilashK7565 : Thank you it worked and below is how I tried to define it.