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

cancel
Showing results for 
Search instead for 
Did you mean: 
vinayasree
Member II

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

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
angelborroy
Alfresco Employee

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

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
vinayasree
Member II

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

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?