---
title: "Form Submission Edited Event"
method: POST
path: "Form submission Edited"
---

# Form Submission Edited Event

`POST Form submission Edited` (webhook)

Receive real-time data updates when a form submission is edited at your specified URL. 

Find more details about event types and payload examples in the Guides -> Webhooks section for a deeper understanding.

## Acknowledgement `200`

Successful Response

- FormSubmissionWebhookResponse
  - `requestId` string — The request id
  - `company` string, required — The company id
  - `activityType` string, required — The activity type
  - `eventTimestamp` integer, required — The event unix timestamp
  - `evnetTimestamp` integer, required — DEPRECATED: Use event_timestamp instead
  - `eventType` string, required — The event type that triggers the webhook
  - `data` FormSubmissionAnswersResponse, required
    - `formSubmissionId` string, required — The form submission id.
    - `formId` integer, required — The forms id.
    - `submissionTimestamp` integer, required — The timestamp of the submission.
    - `submissionTimezone` string, required — The timezone of the submission.
    - `entryNum` integer, required — The entry number.
    - `submittingUserId` integer, required — The user id of the submitting user.
    - `isAnonymous` boolean, required — Whether the submission is anonymous.
    - `answers` union[], required — The answers.
      - union
        - MultipleChoiceAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'multipleChoice' — The questions type
          - `selectedAnswers` FormMultipleChoiceOptionModel[], required — The selected answers.
            - `multipleChoiceOptionId` string, required — The ID of the multiple choice option
            - `text` string, required — The text of the option
        - NumberAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'number' — The questions type
          - `inputValue` number — The input value.
        - OpenEndedAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'openEnded' — The questions type
          - `value` string — The input text.
        - EmailAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'emailAddress' — The questions type
          - `value` string — The email address
        - YesNoAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'yesNo' — The questions type
          - `selectedIndex` integer — The selected index.
        - PhoneNumberAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'phoneNumber' — The questions type
          - `value` string — The phone number with country code
        - ScannerAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'scanDocument' — The questions type
          - `images` FormImageModel[], required — The images.
            - `url` string, required — The URL of the image.
        - ImageSelectionAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'imageSelection' — The questions type
          - `selectedAnswers` FormImageSelectionModel[], required — The selected answers.
            - `imageSelectionId` string, required — The ID of the image selection.
            - `text` string, required — The text of the image selection.
            - `image` string, required — The URL of the image.
        - LocationAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'location' — The questions type
          - `locationInput` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
        - AudioAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'audioRecording' — The questions type
          - `audioUrl` string — The audio url.
          - `audioLength` integer — The audio length in seconds.
        - TaskAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'task' — The questions type
          - `isChecked` boolean, required — Whether the task is checked
        - DateTimeAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'datetime' — The questions type
          - `timestamp` integer — The timestamp of the answer.
          - `timezone` string — The timezone of the answer.
          - `isTimeSubmitted` boolean, required — Whether the time was submitted.
          - `isDateSubmitted` boolean, required — Whether the date was submitted.
        - RatingAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'rating' — The questions type
          - `ratingValue` integer — The rating value.
        - ImageAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'image' — The questions type
          - `images` FormImageModel[], required — The images.
            - `url` string, required — The URL of the image.
        - SignatureAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'signature' — The questions type
          - `images` FormImageModel[], required — The images.
            - `url` string, required — The URL of the image.
        - FilesAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'files' — The questions type
          - `files` FormFileModel[], required — The files.
            - `url` string, required — The URL of the file.
            - `size` integer, required — The size of the file in bytes.
            - `fileName` string, required — The name of the file.
        - SliderAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'slider' — The questions type
          - `value` integer — The value of the slider.
        - FormulaAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'formula' — The questions type
          - `result` number — The result of the formula.
          - `status` string — The status of the formula.
        - VideoAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `submissionTimestamp` integer — The timestamp of the submission.
          - `location` GpsData
            - `address` string — The address associated with the GPS data.
            - `longitude` number — The longitude coordinate.
            - `latitude` number — The latitude coordinate.
          - `updateTimestamp` integer — The timestamp of the last update.
          - `updateUserId` integer — The user id of the last update.
          - `wasSubmittedEmpty` boolean, required — Whether the submission was empty.
          - `questionType` 'video' — The questions type
          - `videos` FormVideoModel[], required — The videos.
            - `videoUrl` string, required — The URL of the video.
        - DescriptionAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `questionType` 'description' — The questions type
        - GroupAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `questionType` 'group' — The questions type
          - `answers` union[], required — The list of answers in the group.
            - union
              - …
        - MultiGroupAnswer
          - `questionId` string, required — The questions id.
          - `wasHidden` boolean — Whether the submission was hidden (by a condition).
          - `questionType` 'multiGroup' — The questions type
          - `groupAnswers` MultiAnswerItem[], required — List of multi-answer items
            - `type` string, required — The type of the answer item
            - `index` integer, required — The index of the answer item
            - `answers` union[], required — The list of answers
              - …
    - `submissionStartTimestamp` integer, required — The captured timestamp marking when the employee opened the form to begin filling it out.

---

[API](https://skmtc.net/connecteam/apis/connecteam-api-documentation.md) · [All operations](https://skmtc.net/connecteam/apis/connecteam-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/connecteam/connecteam-api-documentation/revisions/d8f7f302222e/schema)
