When returning a relationship collection for an entity, for example the children of a node or the members of a site, details of the entity are not included by default, to include them you can use the includeSource query parameter.
The http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-my-/children?includeSource=true request shows how you’d include details of the user’s home folder when listing its children, shown below in the source property:
{
"list": {
"pagination": {
"count": 12,
"hasMoreItems": false,
"totalItems": 12,
"skipCount": 0,
"maxItems": 100
},
"entries": [ ... ],
"source": {
"name": "test",
"createdAt": "2017-02-20T11:01:39.647+0000",
"modifiedAt": "2017-04-12T10:31:12.509+0000",
"createdByUser": {
"id": "admin",
"displayName": "Administrator"
},
"modifiedByUser": {
"id": "test",
"displayName": "Test User"
},
"isFolder": true,
"isFile": false,
"aspectNames": [
"cm:ownable",
"cm:auditable"
],
"properties": {
"cm:owner": {
"id": "test",
"displayName": "Test User"
}
},
"nodeType": "cm:folder",
"parentId": "a9ad3bc4-d30f-4910-bee0-63d497e74a22",
"id": "062b8b2a-aa7e-4cdd-bfec-7fbcd16ecd85"
}
}
}
Another example is returning details of a site when listing it’s members, to do that you’d use the http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/sites/swsdp/members?includeSource=true URL.
The includeSource parameter is supported for all endpoints that include an entity and a relationship collection.