How to GET mapped entities JSON in REST API

When I hit the primary table using postman, I got only the primary table data, how can I get primary and child table data by the single hit

I can guess that you need to specify view if you didn’t.
/rest/v2/entities/MYENTITY/search?filter={…}&view=

1 Like

I am getting this error, Can you give one sample API call.

{
“error”: “Server error”,
“details”: “”
}

2018-12-07_16-51-342018-12-07_16-52-40
same goes for filtered calls

.../search?filter={"conditions": [ {  "property": "author.name","operator": "startsWith", "value": "Ivan"}]}&view=procAttachment-browse

Thank you, Its working fine.