Hello, Fireblocks team, I need know how to resolve this error: Failed: AxiosError: Request failed with status code 401
in `const fs = require(‘fs’);
const path = require(‘path’);
const { FireblocksSDK } = require(‘fireblocks-sdk’);
const { exit } = require(‘process’);
const { inspect } = require(‘util’);
const apiSecret = fs.readFileSync(path.resolve(“./fireblocks_secret.key”), “utf8”);
// Your NCW Admin API key
const apiKey = “”
// Choose the right api url for your workspace type
const baseUrl = “https://sandbox-api.fireblocks.io”;
const fireblocks = new FireblocksSDK(apiSecret, apiKey, baseUrl);
(async () => {
//Create a new Non Custodial Wallet
const walletId = await fireblocks.NCW.createWallet();
console.log(inspect(walletId, false, null, true));
})().catch((e)=>{
console.error(Failed: ${e}
);
exit(-1);
})` and I want to call other API of NCW, too, thank you.