how to get url parametres from the url
@Vinay1 the params passed to any request GET
or POST
are acessible on the backend via
frappe.local.form_dict
example:
/api/method/my_method?group=1¶m=hi
Will be acessible on the backend as
frappe.local.form_dict.group
frappe.local.form_dict.param