FormSubmission
Fetch Form Submission
Retrieve a form submission. This is a record of a form submission, including the submitted standard and custom fields. Please refer to the Form and Forms::Submission resources if you would like to submit forms programmatically.
get/form_submissions/{id}
Path parameters
idstring required
Response
OK
Example response
{
"id": 1,
"public_id": "LkmpVe",
"contact_id": 7,
"workspace_id": 42000,
"page_id": 1,
"created_at": null,
"updated_at": null,
"data": {
"url": "/contact",
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com"
}
}