From another application
Use the following information to launch the doForms app from another app using either iOS URL Schemes or an Android intent:
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.androidFrom a link
Use 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=HelloHere is a sample URL with project and form keys substituted:
https://mydoforms.com/launch?project=ag9zfm15ZG9mb3Jtcy1ocmRyFAsSB1yb2plY3QYgICUbnvowsM&form=ag9zfm15ZG9mb3Jtcy1ocmRyEQsSBEZvcmYgICUhdvXzQkM&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