Public Access Links
Setting Actor Property Values on a Link
Sets or unsets pre-registered Actor Property values on a Public Access Link. The body must contain a properties object mapping property names to string values or null. Sending null for a property unsets it.
Returns the extended Public Link, including a properties object containing all currently set property values.
Requires public_link.update permission.
patch/v1/projects/{projectId}/forms/{xmlFormId}/public-links/{linkId}
Path parameters
projectIdnumber required
The numeric ID of the Project
xmlFormIdstring required
The xmlFormId of the Form being referenced.
linkIdinteger required
The numeric ID of the Link
Request body
Example request
{
"properties": {
"region": "North",
"supervisor": null
}
}Response
Returns the extended Public Link with the updated properties.
Example response
{
"createdAt": "2018-04-18T23:19:14.802Z",
"displayName": "My Display Name",
"id": 115,
"updatedAt": "2018-04-18T23:42:11.406Z",
"deletedAt": "2018-04-18T23:42:11.406Z",
"token": "d1!E2GVHgpr4h9bpxxtqUJ7EVJ1Q$Dusm2RBXg8XyVJMCBCbvyE8cGacxUx3bcUT",
"createdBy": {
"createdAt": "2018-04-18T23:19:14.802Z",
"displayName": "My Display Name",
"id": 115,
"updatedAt": "2018-04-18T23:42:11.406Z",
"deletedAt": "2018-04-18T23:42:11.406Z"
},
"properties": {
"region": "North"
}
}