Some users wish to provide direct browser access to specific actions within the document archive browser interface.  There is one published url to open a document, found on this page of the manual:


https://demo.unform.com:27392/en-us/documentation/direct_browser_access_to_documents.htm

You can also use browser tools to discover and mimic the requests sent by the browser interface.  However, to ensure url structures you use don't become obsolete as UnForm is updated, use the webapi object, which can generate urls for specific actions.  You can use that in a simple rule set to build url structures.


Here is a simple example of a rule set that gets a demo_sales library browse by type of Invoice:

prejob{
o=new("webapi")
url$=o'browseurl$("demo_sales","type","Invoice")
drop object o
}

text 1,2,{url$}

You can run this in the design tool.  Be sure to select Force Rule Set in the options, since there is no detection.  Here it the object documentation page:

https://demo.unform.com:27392/en-us/documentation/obj_webapi.htm