Use the following information to launch the doForms app from another app:
The URL Scheme for both Android and iOS apps is
doforms://To open a specific form in a project, use this URL:
doforms://openForm?project={projectKey}&form={formKey}The Android package code is
com.mdt.doforms.androidUse this URL to launch the doForms app from a browser:
https://mydoforms.com/launchTo open a specific project and form use this format (substitute the correct project and form keys):
https://mydoforms.com/launch?project={projectKey}&form={formKey}To populate fields in the form, use data names as parameter keys:
https://mydoforms.com/launch?project={projectKey}&form={formKey}&My_Text=Hello- Values must be URL encoded (e.g. %20 for a space)
- Use ISO format for dates:
- Date: YYYY-MM-DD
- Time: hh:mm
- Date/Time: YYYY-MM-DDThh:mm
- Use decimal for percentages (e.g. 0.42 for 42%)
- Use parenthesis to indicate the row of a Table or Repeatable
- My_Table_Text(1) will populate My_Table_Text in the first row
- My_Table_Text(2) will populate My_Table_Text in the second row