Retrieve a specific form element submission for a given form element, period unit, and form submission.
Parameters:
formElementId: The unique identifier of the form elementperiodUnit: The period unit (e.g., “month”, “quarter”, “year”) for the submissionformSubmissionId: The unique identifier of the parent form submissionNotes for TIMESTAMP elements:
recordedAt may be present on the submission row (UTC).GET /form-submissions instead, where each item includes recordedAt, formElementSubmissionId, status, and docs.Example response (trimmed):
{
"id": "fes-123",
"formSubmissionId": "fs-1",
"formElementId": "el-ts",
"periodUnit": 3,
"sequence": 2,
"value": 15,
"status": "COMPLETED",
"recordedAt": "2024-03-12T08:00:00Z",
"docs": []
}
This endpoint provides detailed submission data for individual form elements within the context of a specific time period and form submission. This is useful for retrieving granular data entry values for reporting and analysis purposes.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
COMPLETED, APPROVED, REJECTED