Retrieve Audit Entries from a Specific Person
It was already possible to use 4me’s REST API to look up the entire audit trail of a specific record. For example, the following CURL command shows how the audit trail of request 70403 can be retrieved from Widget Data Center’s 4me account (which account ID is wdc):
curl -u “api-token:x” “X-4me-Account:wdc” “https://api.4me.com/requests/70403/audit”
Now it is possible to be a little more specific. If you only need the audit entries that were generated for the updates performed by a specific person, you can do this by adding ?created_by= to the URL, followed by the ID of this person’s record. That would look like this in a CURL example:
curl -u “api-token:x” “X-4me-Account:wdc” “https://api.4me.com/requests/70403/audit?created_by=1544”