コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.
解決済み

Schedule and call the OOTB asset reports generation and store it in dam location

Avatar

Employee

Hi All,

We have a requirement to store the asset reports which are available OOTB in the custom dam location. I know we have the option to schedule it manually from the report console but I want my schedular to call the asset report generation and store in the dam location.

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

Hi @SateeshRe 

 

You can make a POST call to http://localhost:4502/libs/dam/gui/content/reports/generatereport.export.json to generate the reports programmatically.

 

In the response, it sends the sling job ID which you can use to find the complete path where the report is generated under /var/dam/reports. You can then copy the generated CSV from the default path to the custom path under DAM. I have not looked at the implementation to see if the default report path would be configurable.

 

narendragandhi_0-1708917944799.png

 I hope this helps to decide on approach. 


Thanks

Narendra

元の投稿で解決策を見る

2 返信

Avatar

正解者
Community Advisor

Hi @SateeshRe 

 

You can make a POST call to http://localhost:4502/libs/dam/gui/content/reports/generatereport.export.json to generate the reports programmatically.

 

In the response, it sends the sling job ID which you can use to find the complete path where the report is generated under /var/dam/reports. You can then copy the generated CSV from the default path to the custom path under DAM. I have not looked at the implementation to see if the default report path would be configurable.

 

narendragandhi_0-1708917944799.png

 I hope this helps to decide on approach. 


Thanks

Narendra

Avatar

Employee

Thanks for the info. @narendragandhi  

I tested using postman and it is working.