Subform data via related list REST

Subform data via related list REST

to my best knowledge, it is not possible to access subform via a related list REST API call: https://www.zoho.com/crm/developer/docs/api/v3/get-related-records.html

here is an example REST GET list call:
  1. curl "https://www.zohoapis.com/crm/v3/Deals/4876876000000376008/myrelatedlist?fields=id,mysubform"
...there is currently an implicit limitation that subform data cannot be fetched via such related list GET operation and only `id` is returned in the data in the example above.

individual record request does return the subform data - no issues here:
  1. curl "https://www.zohoapis.com/crm/v3/Deals/4876876000000376008/myrelatedlist/123456789?fields=id,mysubform"

please consider this post as a feature request so that subform data can be retrieved in a list GET API call via related list.