DocsAPI ReferenceForm/bff/form/rename-field-key
postFormAdmin BFF

/bff/form/rename-field-key

Renames a field key (the programmatic identifier). If the new key conflicts with an existing field, a numeric suffix is appended. Does not affect existing submitted records.

FormpostBffFormRename-field-key

Parameters

3 body

3 total
Body · 3
formCodestringRequired

Form code.

fieldCodestringRequired

Current field key.

fieldCodeNewstringRequired

New field key. Auto-suffixed if it conflicts with another field.

Request

POST /bff/form/rename-field-key

post
curl -X POST "https://api.bizkithub.com/bff/form/rename-field-key" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "formCode": "contact-form",
  "fieldCode": "field_1",
  "fieldCodeNew": "email"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key