sherfin asked
When I create a table named
sherfin replied
I’m creating table from GUI, however, the corresponding API endpoints being generated contains a string formed by the table name plus a random four-letter string.
So if I asked the user to enter the table name, then there is no way for my implementation to know what this random generated string is, while trying to hit the end-point.
sherfin replied
table name is test
, but I have to ask the user to go to the swagger documentation and collect the string test_h9x6
and supply to ToolJet for integration.
wkw replied
just checked the code. when we create a project, your project name will be converted to lower case, if there s space, it ll be converted to ‘_’, then followed by another 4 random characters with another underscore
sherfin replied