To create a Sign Up function:
Log in to the Zoho Developer Console.
Click on Vertical Studio.
Select the application you want to modify.
Click Edit.
In the left panel, click on Startup Actions.
Select Functions > Sign Up Function.
Enter the required code in the Deluge Script Editor.
Click Save & Execute to test the code, or simply Save.

Note
Please note that the Sign Up function is version-dependent. Any updates will be reflected in the next version of the application.
To modify the Sign Up Function, update the code in the Deluge Script Editor and click Save.
To delete the Sign Up Function, remove all the contents from the Deluge Script Editor and click Save.
The SignupMap is an argument passed to the Sign Up Function.You can use signupMap to retrieve the Organization ID during the user sign-up process..
To retrieve the Organization ID, use the following syntax:
<variable_name> = input.signupMap.get("organizationId"); |