The API call client.getUsersApi().getUsersByRestIds({userIds:['']}) will return a 403 Forbidden error, but other APIs can generally be accessed normally.
`
const cookies = {
auth_token: authToken,
ct0
} as Record<string, string>;
const client = await api.getClientFromCookies(cookies);
const userResp2: any = await client.getUsersApi().getUsersByRestIds({userIds:['']});
console.log('response: ',userResp2)
`