I would like to grant users that are not logged in, the ability to check specific parameters within a database, so long as they have the correct ‘token’. The token would be given to the user ahead of time and changed in the database at fixed intervals. It would not be unique per user.
For example:
Vehicle | Available |
---|---|
Car 1 | No |
Car 2 | Yes |
Car 3 | No |
A user could check whether [Car 2] is “Available” if they have the correct [Token] of “1234”.
There is much more data in the database, so I can’t expose the entire thing, but I’m looking for the most efficient way to achieve this.
Is it with API calls? Using backend workflows with privacy rules ignored? Or is there a better way?