v1

latestOpenAPI 3.1.02026-07-2466150275.0 KB
Public URLs

Create Forms URL

Create a public access URL for a set of form templates.

The generated link will return a list of forms matching the form templates that were submitted for the specified site.

post/v1/public-access/form/

Request body

namestring required

Name of the new shared link

siteIdinteger required

ID of the site that the forms were submitted to

formIdsinteger[] required

IDs of the form templates to include in the list

Example request

{
  "name": "Downtown Site Forms",
  "siteId": 1,
  "formIds": [
    123,
    45,
    10555
  ]
}

Response

Successful Response

errorboolean

A boolean error indicator.

messagestring nullable

Optional message.

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"
  }
}