We are going to use RC Faxing API to send faxes from our web application.
All of the faxes will be sent using the same (admin/service) account and authorization details.
However, we would like to use multiple extensions - each of them will be mapped to one of the organizations in our app. We use JWT tokens for authorization.
- How can I configure multiple extensions without adding more users? I need these extensions to only work for faxes, nothing more (no calls or sms).
- Is there a way to configure a development sandbox with multiple extension numbers for free, in order to test this solution before we will configure the real extensions for production and pay for it?
- Would using multiple extensions require also using separate JWT tokens for each organization? I was going to use just one account (with one JWT token) for each request to Fax API. I guess it should be sufficient to distinguish the requests by using different extensionId in path? Is it possible?
- The same question for webhooks (subscriptions) authorization. Can I use the same user’s JWT for all the requests with different extension ids?
Thanks in advance.