Hi,
If you’re trying to get ‘atob’ propery in your app’s BL/API SERVICES page, you can’t do it. Logic is invoked not in the browser side, so window doesn’t exist. Like it was said here
your task can be done, f.e., in NodeJS. Try to use Buffer class
Buffer.from(content, 'base64').toString('utf8');
Regards,
Igor