Email SupportCall Us Go to Close

FormSubmission


A FormSubmission activity is created automatically when someone submits a form through Close forms.

FormSubmissions are created by the system when a form is submitted; they cannot be created or modified through the API.

FormSubmission Fields

Form References:

  • form_id: The ID of the form that was submitted

Form Values:

  • values (object): The submitted form data as key-value pairs
    • Keys are form field IDs (e.g., formfld_0325NAK2ePwMEBJrZZCk5F)
    • Values are the data submitted by the user

Submission Context:

  • ip_address: The IP address of the submitter
  • origin: The Origin header from the submission request
  • source_url: The full URL where the form was submitted
  • source_url_normalized (string, read-only): Computed field containing just the domain and path from source_url

List or filter all FormSubmission activities.

GET /activity/form_submission/{?lead_id, contact_id, organization_id, form_id, form_id__in, date_created__gt, date_created__lt, _limit, _skip, _fields}

Get a list of matching FormSubmission activities. In addition to standard Activity filtering parameters, you can filter by specific form(s) using the form_id or form_id__in parameters.

Fetch a single FormSubmission activity.

GET /activity/form_submission/{id}/{?_fields}

Delete a FormSubmission activity.

DELETE /activity/form_submission/{id}/

Delete a FormSubmission activity.