Document Upload URLs can be used to open the Upload module for a user to upload a document to OnBase. Additional parameters can be specified to automatically select the appropriate document type, as well as populate keyword values for keywords on the document to be uploaded. The following base URL will allow a user to open the Upload module within OnBase.
onbasemobile://upload?
The following additional parameters can be specified:
Parameter |
Description |
---|---|
dtid |
The dtid parameter is used to specify which document type the document should be uploaded to. This parameter is optional. |
kw |
The kw parameter is used to prepopulate keyword fields with values on the document being uploaded. This parameter is optional. The following format is used for populating keyword values: kw[keyword_type_id]=[keyword_value] The format for specifying a keyword value varies based on the type of keyword being used, for example: numeric, alphanumeric, date. For information on formatting different keyword type values, see Keyword Type Value Formatting. Note:
A dtid must be specified when using the kw parameter. |
The following URL shows an example which will allow a user to upload a document to a document type of 101. In the Upload keyword panel, keyword type 1098 will be populated with a value of John.
onbasemobile://upload?dtid=101&kw1098=John
To specify multiple keyword types and keyword type values, add another keyword parameter and separate each with an ampersand (&):
onbasemobile://upload?dtid=101&kw1098=John & kw1099=Smith
All URL parameters and values must be lowercase.