Hey guys,
I have a simple whitelist function
@frappe.whitelist()
def test(name):
return {'name': name}
I am using Postman to check it …
When I am using query strings (and I know its not the correct way, I just need to show the response), I get
See the query string inside …
I try to do it the correct way by sending form-data and I get:
I can’t understand that I doing wrong …