v1
latestOpenAPI 3.1.02026-07-2466150275.0 KBPublic URLs
Create Bundle URL
Create a public access URL for a bundle of items, including forms, assets, documents, and a site check-in.
The following set of "public_access_item" types are supported:
- "form", "id" - this is the ID of the form template
- "document", "id" - this is the ID of the specific document
- "asset", "id" - this is the ID of the asset
- "title", "url" - for a link; we have to specify the title and URL
- "on_site_log" - for the on_site_log the site has to be specified
This generates a link that will encode the bundle.
post/v1/public-access/bundle/
Request body
Example request
{
"name": "Site Orientation Bundle",
"siteId": 1,
"items": [
{
"itemId": 123
}
]
}Response
Successful Response
Example response
{
"data": {
"id": 1,
"url": "https://portal.salussafety.io/public/action/86E69EFA-2A59-4A38-BBC6-AA6AA62BFB08",
"name": "Downtown Info Packet",
"entity": "bundle",
"shortCode": "de8b0x"
}
}