How to Prefill Atendee Data on Registration Page

Modified on Tue, 7 May at 8:27 PM

You can autofill the user information on the registration from by passing in the query params

// Example this is a query params with name, email and phone
?name=anenth&email=anenth@premagic.com&phone=7760800778 


// eg.
nasscom.premagic.com/next-event/register?name=anenth&email=anenth@premagic.com&phone=7760800778&DISPLAY-ID=1
nasscom.premagic.com/next-event/register?name=<name>&email=<email>&phone=<phone_number>&DISPLAY-ID=<serial_number>


You will need to encodeURIComponent all the item, to make sure all the data gets prefilled propoerly

Autofill custom field

Find the formfield Id from the account app(we dont show it now, but we can tell them on request)

and add to the query string

?ifwarRl3=a

Autofill hidden fields

DISPLAY-ID=1

Autofill and directly show take photo

Add below field and it will redirect the user to take photo.

have_consent=true


Phone number with country code will work

https://test-co.premagic.com/startup-india-summit-tgti/register/?name=Gurpreet%20Sign&email=anenth@premagic.com&phone=%2B12124567890&USER-COMPANY=One%20Digital%20Entertainment

Example for google sheet

Create a named function with name, email, phone, id as arguments


=HYPERLINK(CONCATENATE('Premagic data'!$B$1,
"?name=",ENCODEURL(name),
"&email=",ENCODEURL(email),
"&phone=",ENCODEURL(phone),
"&DISPLAY-ID=",ENCODEURL(id)))


Note: All the values need to be encoded








Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article