Share access tokens within a single app

According to your docs, it’s a best practice to share access tokens within a single app. I’m building an api system where multiple doctors could be making api request (i.e. create a meeting) through their internal app. Does this mean they should share the same access token (assuming its not expired) when making api request?

@devontae if you are using Server to server oauth app, you can use the same access token to create meeting for different doctors

Thanks @chunsiong.zoom