Hi @Kiran_Vedantam,
We can achieve this in JS. Please find below for the sample snippet. Based on the pattern you get your queryParameters and form field name attribute, we can amend the logic accordingly.
(() => {
$(document).ready(() => {
var urlParams = new URLSearchParams(window.location.search);
if(urlParams.has("firstName")){
console.log("Has firstName as Query Param");
$("input[name='firstName']").val(urlParams.get("firstName"));
}
if(urlParams.has("country")){
// for select, value set should be <option> value for it to display the respective value as selected
$("select[name='country']").val(urlParams.get("country"));
}
});
}) ();
