Auditing
List change log entries of an organization
Listing change log entries of the specified organization id.
get/api/v1/changelog/organization/{organizationId}/
Path parameters
organizationIdstring required
The namespace identifying the organization whose change log entries are to be listed
Query parameters
messageMimeTypestring
The Mime-type for the message format that should be returned. e.g. 'text/plain' or 'text/mustache'
fromDatestring date-time
From date time as UTC Date-Time format
toDatestring date-time
To date time as UTC Date-Time format
offsetinteger
Start with the n-th element
limitinteger
The maximum count of returned elements
Response
OK
Example response
{
"elements": [
{
"id": "e100123",
"message": "User {{&user}} has changed the title of {{&object}}",
"messageProperties": {
"user": {
"value": "a.vratny",
"type": "user"
},
"object": "nearly every object"
},
"timestamp": 1517232722
}
],
"limit": 100,
"total": 200
}