BizKitHub
DocsAPI ReferenceForm/bff/form/delete-record
postFormAdmin BFF

/bff/form/delete-record

Permanently deletes a single form submission and all its entry values. This action is irreversible.

FormpostBffFormDelete-record

Parameters

JSON body

Request body

application/json
formCodestringRequired

Form code.

Examplecontact-form
recordIdnumberRequired

ID of the record to delete.

Example42

Response schema

1 status code documented

200Success
successbooleanRequired

Response example

application/json
{
  "success": false
}

Request example

POST /bff/form/delete-record

post
curl -X POST "https://api.bizkithub.com/bff/form/delete-record" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "formCode": "contact-form",
  "recordId": 42
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key