I would like to select child-table by rest-API
I have tried two ways, but the result is errors:
- request the child table doctype itself:
The request: https://xyz/api/resource/Sales Invoice Item
The response:
“exception”: “frappe.exceptions.PermissionError”,
- request the child-table field:
the request: https://xyz/api/resource/Sales Invoice?fields=[“name”,“items”]
the response:
Unknown column ‘items’
Frappe Framework: v13.36.3 (version-13)
There is any solution or another way to select the child table by rest-API?
thank you in advance.