DocsAPI ReferenceForm/bff/form/record-detail
getFormAdmin BFF

/bff/form/record-detail

Returns the full detail of a single form submission including all field values. Each entry contains the field key, label, value, type, and options.

FormgetBffFormRecord-detail

Parameters

2 query

2 total
Query · 2
formCodestringRequired

Form code.

recordIdstringRequired

Record ID.

Request

GET /bff/form/record-detail

get
curl -X GET "https://api.bizkithub.com/bff/form/record-detail?formCode=contact-form&recordId=42" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "recordId": 0,
  "entries": [
    {
      "key": "example_key",
      "label": "example_label",
      "value": "example_value",
      "type": "example_type",
      "helper_text": "example_helper_text"
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key