ContributionsMost RecentMost LikesSolutionsRe: Get Snap Task 401 (Unauthorized) Error I had also tried that approach passing the "Authorization" : "Bearer {token_value}" But still receiving a 401. I did notice that the browser asked for my credentials where as postman didn’t. Hence why i tested with basic. I am using a triggered task, unfortunately I’m not clued up on the Ultra Tasks - is this something i should be using in this scenario? Thanks for your response Regards Rich Get Snap Task 401 (Unauthorized) Error Hi, Hoping someone can offer some advice around this for me. Problem: I have a snap pipeline set up as a task in our environment, when called with a param it will return some json data around customer information. I can test this via postman with cloud and locally on my machine with the browser using both urls (on prem and cloud). However when using my web application (React) and using fetch() - I’m getting the 401 (Unauthorized) error in the console. Should i be using Basic Auth or the Bearer Token? Both of which seemed to be failing and nothing under in the headers (inspected the network tab in dev tools) Preview of my code making the request fetch(url, { mode: 'no-cors', headers: new Headers({ "Authorization": `Basic ${base64.encode(`${login}:${password}`)}` }), }) Any help would be greatly appreciated thanks. Regards Rich