Multiple users in one account

Hi, I am searching for a way to add multiple users (employees with picture and name) to one account. Those users should be displayed in one page, where they can choose their account by clicking.

1 Like

I did something like this for an education app.

I made a data type:
Account:
- Name
- Picture

And I added a new parameter to the User data type:
- Accounts Associated
- Type: List of Accounts
- Account Selected
- Type: Account

When you wanted to show the current selected account’s name you would put something like:

Current User’s account selected’s name

1 Like