Question
Is there a way to capture Audit Logs for Agility?
Answer
All transactions performed in the application are tracked in the server and workitem history. to see history like that, you can use the API, but there are no audit logs for this.
Sample code for finding historical log data between pairs of dates for Defects. Ttweak the API query as:
<Server Base URI>/rest-1.v1/Hist/Defect?
sel=Key,Name,Type.Key,CreateDateUTC,ChangeDateUTC&where=ChangeDateUTC<'2015-02-01
00:00:00';ChangeDateUTC>='2015-01-01 00:00:00'per requirement.
Audit logs are limited to setup logs, datamart dataloader logs, and exception logs.
Comments
Please sign in to leave a comment.