Hi,
I know this question was asked before but is there a way to export the setup log with the user names who logged in on a given day.
The previous solution used the rest api but from the output I did not see any user names. I also want to choose a time range?
Solved! Go to Solution.
Hi,
I know this question was asked before but is there a way to export the setup log with the user names who logged in on a given day.
The previous solution used the rest api but from the output I did not see any user names. I also want to choose a time range?
Solved! Go to Solution.
Solved by john.denner. Go to Solution.
Solved by trungWMQMT. Go to Solution.
You can query the logs using a from timestamp as follows:
https://adskmandatt.autodeskplm360.net/api/rest/v1/itemLog/2014-06-11T00:07:06.924-04:00
https://adskmandatt.autodeskplm360.net/api/rest/v1/metaLog/2014-06-11T00:07:06.924-04:00
I don't think you can supply a user.
Thanks,
You can query the logs using a from timestamp as follows:
https://adskmandatt.autodeskplm360.net/api/rest/v1/itemLog/2014-06-11T00:07:06.924-04:00
https://adskmandatt.autodeskplm360.net/api/rest/v1/metaLog/2014-06-11T00:07:06.924-04:00
I don't think you can supply a user.
Thanks,
Thanks for the informative content.
Thanks for the informative content.
This output I can get but it's not really what I need. I wanted to see for example today, who logged into the PLM. I want to get the number of unique people who have logged into the system.
Right now I have to go to the system log, and browse through hundreds of pages to find unique names.
This output I can get but it's not really what I need. I wanted to see for example today, who logged into the PLM. I want to get the number of unique people who have logged into the system.
Right now I have to go to the system log, and browse through hundreds of pages to find unique names.
Right,
I noticed that it doesn't show much in the itemLog or metaLog. Looking through the API, the only thing I can find is the following:
This will return the items that this user has updated (based on my testing, it didn't keep track of the records that were simply viewed).
To use this, you would need to get the list of userids. You can get this from the Users page - clicking on each user will reveal the userid in the URL. Or you can run the following to get all of them - https://adskmandatt.autodeskplm360.net/api/rest/v1/users?. In my case, I was surprised to see my email address - I would have expected some 5 character sequence with both alpha and numeric. This isn't so bad if you plan on coding it in some sort of a client (Jitterbit, C#, Java, etc).
Thanks,
Right,
I noticed that it doesn't show much in the itemLog or metaLog. Looking through the API, the only thing I can find is the following:
This will return the items that this user has updated (based on my testing, it didn't keep track of the records that were simply viewed).
To use this, you would need to get the list of userids. You can get this from the Users page - clicking on each user will reveal the userid in the URL. Or you can run the following to get all of them - https://adskmandatt.autodeskplm360.net/api/rest/v1/users?. In my case, I was surprised to see my email address - I would have expected some 5 character sequence with both alpha and numeric. This isn't so bad if you plan on coding it in some sort of a client (Jitterbit, C#, Java, etc).
Thanks,
Hi Jason,
It's been awhile buddy to connect with you again.
At the moment there isn't an API to extract the System Log.
However, you can save the information in the System Log into Excel Spreadsheet and sort from there.
It will be much easier and faster than going through the pages.
Hi Jason,
It's been awhile buddy to connect with you again.
At the moment there isn't an API to extract the System Log.
However, you can save the information in the System Log into Excel Spreadsheet and sort from there.
It will be much easier and faster than going through the pages.
Try this to get more entries per page. I think you''ll be pleasantly surprised. 🙂
https://yourtenant.autodeskplm360.net/adminSystemLog.do?perpage=200&pagenum=1
Not sure the limit on that parameter but I know 2000 works.
Try this to get more entries per page. I think you''ll be pleasantly surprised. 🙂
https://yourtenant.autodeskplm360.net/adminSystemLog.do?perpage=200&pagenum=1
Not sure the limit on that parameter but I know 2000 works.
Can't find what you're looking for? Ask the community or share your knowledge.