cancel
Showing results for 
Search instead for 
Did you mean: 

Fetch the size uploaded by custom property 'username' of a custom aspect .

vinayasree
Champ in-the-making
Champ in-the-making

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?

2 REPLIES 2

angelborroy
Community Manager Community Manager
Community Manager

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
        }
    ]
}'
Hyland Developer Evangelist

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?