You are viewing limited content. For full access, please sign in.

Question

Question

Retrieve draft in forms

asked on September 8, 2016 Show version history

Hello everyone,

I would like to know how can I retrieve a public form that was saved as a draft, but the submitter never received the e-mail with the link to resume it. Is there a way to check the instance Id and submission Id based on the e-mail provided by the user in order to build the URL by myself?

0 0

Replies

replied on September 8, 2016

Hi there,

Public form draft url should be retrievable through url

        ...form/resume/{formId}/{submissionId}

 

where {formId} is the form id you can see in the form designer in your starting form, and,

{submissionId} can be queried in your Forms database

select * from cf_form_submissions where process_id  in (select process_id from  cf_bp_processes where bp_id = {your_business_process_id})

{your_business_process_id} is the id you can see in the url of your process modeler

 

 

Note that you will not be able to view the draft unless you have password set by the public user when it was created 

 

 

Thank you.

 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.