You can pass args like below
frappe.call("another_api_method_name", arg1 = value1, arg2 = value2)
and then you must get them in the api before you can use it
arg1 = frappe.form_dict.get('arg1')
arg1 = frappe.form_dict.get('arg2')
You can pass args like below
frappe.call("another_api_method_name", arg1 = value1, arg2 = value2)
and then you must get them in the api before you can use it
arg1 = frappe.form_dict.get('arg1')
arg1 = frappe.form_dict.get('arg2')