Client data segregation

Hi @v-appgami
client_id - is the unique public identifier of your app (this is why it is appearing in the installation url and in each request to your app).

For implementing multi tenancy you need to use account_id if you want to store information on the account level, or a combination of user_id + account_id if you want to store data on the user level.

1 Like