Sending and receiving a generated reference ID with a plumsail form

I have a flow where I am sending a plumsail form to an external user, and obtaining the submitted form details through power automate flow. Now I need to check whether the given user has submitted the form and send a reminder if the person hasn't.

My plan is to send a reference number with the form link, which would auto-fill a text field in the form when the user clicks on the form url.

I would like to know whether there is a way to achieve this with plumsail forms and powerautomate.

Any other approach which helps to fulfill my requirement is also welcomed.

Dear @urweeraratne,
You can use URL params, for example :
https://mydomain.plumsail.io/432d-9618-b81b324016b5?ref=unique

Then retrieve it like this:

fd.rendered(function(){
    var queryString = window.location.search;
    var urlParams = new URLSearchParams(queryString);
    fd.field('Ref').value = urlParams.get('ref');
});
1 Like

@Nikita It worked... Thank you so much for the answer... :slight_smile: This is exactly what I was looking for.