I want to integrate Zoho CRM SDK into my Angular16 client-only app, mostly for the purpose of listing/getting data from various modules.
However, due to the documentation are quite lacking and mostly outdated, I couldn't make them work.
As a start, I am trying to simply get the list of our CRM Users.
1. What would be the simplest way to achieve this? Does anyone have a Plunker demo?
2. Should I use JS SDK (couldn't make it work in Angular, since it doesn't export any module)
3. Should I use TS SDK instead? (too complicated with FileStore, DBStore, ProxyBuilder etc. Do I need all this?)
4. Should I skip SDK altogether and use RefreshToken and AccessToken to call APIs directly? (I feel like the tokens might expire at some point?)
Thanks in advance.