Get Form Lock Status

Retrieve the lock status for a form template.

GET https://api.sonorancms.com/v2/community/forms/1/lock

Rate limit: 27 requests per minute

Authenticated v2 endpoints are rate limited per credential rather than per IP address.

Retrieve the lock status for a form template.

Route Parameters

| Name | Type | Required | Description |

| --- | --- | --- | --- |

| templateId | number | Yes | Target templateId. |

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 response = sonoran.cms:getFormLockV2(templateId)

if response.success then
  print(response.data)
else
  print(response.reason)
end

Response

The data value is a boolean. true means the form template is locked; false means it is open.

Last updated

Was this helpful?