Is it possible to whitelist a predefined list of device IDs that can be added by users? I want to allow users to register and add device IDs, but only if the IDs are within a specific allowed range or list.
For example, I have 10,000 trackers, and I want to prepopulate the database with these 10,000 device IDs. Users should only be able to add devices that are already in this database. This way, they cannot add unauthorized or personal trackers to the platform.
Is there a way to implement this functionality?
You're really looking at a separate orchestration tool that makes calls to the Traccar API for something like this. I know that answer seems flippant, but it's the most realistic answer.
There's no such functionality out of the box, but the source code is open, so you can always implement it for yourself.
Is it possible to whitelist a predefined list of device IDs that can be added by users? I want to allow users to register and add device IDs, but only if the IDs are within a specific allowed range or list.
For example, I have 10,000 trackers, and I want to prepopulate the database with these 10,000 device IDs. Users should only be able to add devices that are already in this database. This way, they cannot add unauthorized or personal trackers to the platform.
Is there a way to implement this functionality?