Hi,
This is my first time integrating Ringcentral APIs. Hence pl bear with my questions.
We are developing a app which has two numbers given to our customers.
Let's say, for sales: 123456789 Ext: 100 and for service: 987654321 Ext 101
When users send an SMS to these numbers, we will read the text messages and process forward.
As I understand, We can implement JWT Auth flow for authenticating server-server calls. We can subscribe to message store through this api
/restapi/v1.0/account/{accountId}/extension/{extensionId}/message-store
Can we use same JWT in production for accessing messages from both the numbers? like so
/restapi/v1.0/account/~/extension/100/message-store/instant?type=SMS
/restapi/v1.0/account/~/extension/101/message-store/instant?type=SMS
Or do we need to create JWT for individual users?
Is JWT created for only Superadmins or other users can create JWT too?
Thanks in advance