postFormAdmin BFF

/bff/form/add

Creates a new empty form. The form starts as active with no fields. If the provided code conflicts with an existing form, a numeric suffix is appended automatically.

FormpostBffFormAdd

Parameters

3 body

3 total
Body · 3
namestringRequired

Form display name.

Length: 1
codestring

Custom code/slug. If not provided or if it conflicts, one is generated from the name.

descriptionstring

Form description.

Request

POST /bff/form/add

post
curl -X POST "https://api.bizkithub.com/bff/form/add" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "name": "Contact Form",
  "code": "contact-form",
  "description": "General inquiry form for the website"
}'

Response

JSON payload

{
  "code": "example_code"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key