Get Form Lock Status

This endpoint allows you to get the form lock status for a specific template from your community.

Get Form Lock Status

POST https://api.sonorancms.com/forms/get_lock_status

Get the specific form template lock status

Request Body

Name
Type
Description

id*

string

Community ID

key*

string

API Key

type*

string

GET_FORM_LOCK_STATUS

data*

array

Array of request objects

Locked

true

Unlocked

false
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "GET_FORM_LOCK_STATUS",
    "data": [
        {
            "templateId": 1,
        }
    ]
}

Template ID

The templateId number can be taken from the form editor's URL when editing a form template.

Last updated

Was this helpful?