API Error, Field Not Permitted

Hello there,
working on some APIs, but when I query with the POSTMAN by the Employee ID from the leave application doctype, I got this error:

{
“exc_type”: “DataError”,
“exception”: “frappe.exceptions.DataError: Field not permitted in query: *”,
“exc”: “["Traceback (most recent call last):\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/app.py\", line 68, in application\n response = frappe.api.handle()\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/api.py\", line 129, in handle\n data = frappe.call(frappe.client.get_list, doctype, **frappe.local.form_dict)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/_init.py\", line 1208, in call\n return fn(*args, **newargs)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/client.py\", line 48, in get_list\n validate_args(args)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/desk/reportview.py\", line 60, in validate_args\n validate_fields(data)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/desk/reportview.py\", line 84, in validate_fields\n raise_invalid_field(fieldname)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/desk/reportview.py\", line 142, in raise_invalid_field\n frappe.throw((‘Field not permitted in query’) + ‘: {0}’.format(fieldname), frappe.DataError)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/_init.py\", line 439, in throw\n msgprint(msg, raise_exception=exc, title=title, indicator=‘red’, is_minimizable=is_minimizable, wide=wide, as_list=as_list)\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/init.py\", line 418, in msgprint\n raise_exception()\n File \"/home/erpnext/frappe-bench/apps/frappe/frappe/init.py\", line 372, in _raise_exception\n raise raise_exception(msg)\nfrappe.exceptions.DataError: Field not permitted in query: *\n"]”,
“_server_messages”: “["{\"message\": \"Field not permitted in query: *\", \"indicator\": \"red\", \"raise_exception\": 1}"]”
}

This is the Link I use: http://erp.mysite.com/api/resource/Leave Application?fields=[“*”,“employee”,“=”,“EMP/00001”]

Any Ideas how to solve this ?!

Maybe you have a syntax error, check the documentation link

Thanks, it was supposed to be filters not fields