can we Customize wix database unique id ccc629b6-461b-4be7-96d5- to 657-123-564

  1. generate unique id in wix database like we received id ccc629b6-461b-4be7-96d5-edaf13632220 like that and i need to 657-123-564 like my dynamic https://www.gazette.international/member-profile/ccc629b6-461b-4be7-96d5-edaf13632220 The URL should be: https://www.gazette.international/ then 9 random digits, like this: https://www.gazette.international/045-768-476

Hey,

You could either generate a 9-digit number using Math.floor() and Math.random() , store it in a collection and query it every time to check if the value is unique. However, it might be inconvenient in case you have a lot of data stored.

Or you can also try to implement a unique id generator using timestamp , here you can find an example that might help.

Good luck!