Set Form Lock Status
Update the lock status for a form template.
Route Parameters
Request Body
Example Request
local Sonoran = require("sonoran")
local sonoran = Sonoran.createClient({
product = Sonoran.productEnums.CMS,
apiKey = "YOUR_API_KEY",
communityId = "YOUR_COMMUNITY_ID",
defaultServerId = 1,
timeoutMs = 30000,
})
local templateId = 1
local payload = {
["state"] = true
}
local response = sonoran.cms:setFormLockV2(templateId, payload)
if response.success then
print(response.data)
else
print(response.reason)
endResponse
Last updated
Was this helpful?

