BizKitHub
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

Query parameters

· 2
formCodestringRequired

Form code.

Examplecontact-form
recordIdstringRequired

Record ID.

Example42

Response schema

1 status code documented

200Success
recordIdnumberRequired

Record ID.

insertedDateDate | string | string | numberRequired

When the record was submitted.

One of 4:
Variant 1
Date

When the record was submitted.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
entriesobject[]Required
Each array item:
keystringRequired

Field key.

labelstringRequired

Field label at the time of submission.

valuestringRequired

Submitted value.

typestringRequired

Field type.

helper_textstringOptional

Field helper text.

optionsanyOptional

Field options (for select fields).

Response example

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

Request example

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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key