Edit a PendingFormSubmission before it is processed based on the pendingTimestamp property. The function places the submission in an editing state preventing it from being processed by the pending queue and returns a prefill id and form id
pendingTimestamp
const pendingTimestamp = '2020-07-29T01:03:26.573Z'const { preFillFormDataId, formId } = await submissionService.editPendingQueueSubmission(pendingTimestamp)window.location.href = `https://mycoolforms.apps.oneblink.io/forms/${formId}?preFillFormDataId=${preFillFormDataId}` Copy
const pendingTimestamp = '2020-07-29T01:03:26.573Z'const { preFillFormDataId, formId } = await submissionService.editPendingQueueSubmission(pendingTimestamp)window.location.href = `https://mycoolforms.apps.oneblink.io/forms/${formId}?preFillFormDataId=${preFillFormDataId}`
Edit a PendingFormSubmission before it is processed based on the
pendingTimestampproperty. The function places the submission in an editing state preventing it from being processed by the pending queue and returns a prefill id and form idExample