12-08-2021 11:35 PM
I have created a custom aspect that has a property userName.Now I want to fetch the size of files based on this custom property. Is there any API that gives the required Results?
If there isn't any API then How to create one. Can anyone help with this?
12-13-2021 02:07 AM
You may try using the REST API.
This one is getting the information for a simple "budget" query, but you can adapt it to your requirements.
curl --location --request POST 'http://localhost:8080/alfresco/api/-default-/public/search/versions/1/search' \ --header 'Authorization: Basic YWRtaW46YWRtaW4=' \ --header 'Content-Type: application/json' \ --data-raw '{ "query": { "query": "budget" }, "stats": [ { "field": "content.size", "sum": true } ] }'
12-13-2021 02:38 AM
In place of budget, I need to query based on cm:creator of cm:auditable aspect. Can you show me an example of how to use it in a query?
Explore our Alfresco products with the links below. Use labels to filter content by product module.