MERF report
/v1/MerfReport/GetMerfReportmerf.readRetrieve a list of MERF submissions.
Use this report to export MERF (event form) submissions for analysis or downstream processing. Results can be filtered by modification or creation date, company, affiliate, form, and event.
Aggregate record modified
Each report row includes an aggregateRecordModified timestamp in addition to the existing recordModified timestamp.
recordModifiedchanges only when the submission itself is edited.aggregateRecordModifiedchanges when the submission or any of its child records — such as field responses, attachments, or submitter person details — are added, updated, or soft-deleted. For example, adding a new field response updates the submission'saggregateRecordModified, but not necessarily itsrecordModified.
When you filter by modifiedSince and modifiedUntil, the API returns rows where either recordModified or aggregateRecordModified falls within the range. This ensures downstream consumers do not miss changes that occurred only on child records.
Request body
Parameters
pageNumberintegerOptionalpageSizeintegerOptionalmodifiedSincedate-timeOptionalmodifiedUntildate-timeOptionalcreatedSincedate-timeOptionalcreatedUntildate-timeOptionalcompanyIdintegerOptionalaffiliateIdintegerOptionalformIdintegerOptionaleventIdintegerOptionalexpand.personbooleanOptionalexpand.fieldResponsesbooleanOptionalexpand.attachmentsbooleanOptionalResponse
Returns a paginated list of MerfReport objects.
The MerfReport object
submissionIdintegerUnique submission identifier.
formIdintegerIdentifier of the submitted form.
formNamestringName of the form.
formTypeNamestringType name of the form.
eventIdintegerIdentifier of the linked event, if any.
userIdintegerIdentifier of the user who submitted the form.
userNamestringName of the submitting user.
userEmailstringEmail address of the submitting user.
statusstringCurrent status of the submission.
submittedDatedate-timeDate the submission was submitted.
recordCreateddate-timeWhen the submission record was created.
recordModifieddate-timeWhen the submission record was last modified.
aggregateRecordModifieddate-timeWhen the submission or any of its child records were last modified.
Expandable collections
personobjectSubmitter person details. Requires expand.person.
fieldResponsesarrayForm field responses. Requires expand.fieldResponses.
attachmentsarraySubmission attachments. Requires expand.attachments.
Pagination
pageNumberintegerCurrent page number.
pageSizeintegerNumber of items per page.
totalCountintegerTotal number of matching entries.
Errors
| Status | Meaning |
|---|---|
400 Bad Request | Validation failed. Check the response for property-level errors. |
401 Unauthorized | The Bearer token is missing, expired, or lacks the required scope. |
403 Forbidden | The client is not permitted to view MERF submissions. |
curl -X POST https://dashboard.alpha.meetingsbooker.com/reportingapi/v1/MerfReport/GetMerfReport \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"formId": 10,
"eventId": 555,
"pageSize": 50
}'