Change Log
/api/v2/changelogs
List Change Logs for an entity
Parameters
| Name | Description |
|---|---|
| entityId * | The ID of the Entity. Type: integer (query) |
| entityName * | The Name/Type of the Entity. Type: string (query) |
| page | The page to list entries. Type: string (query) Default value: 0 |
| size | The page size for listing entries. Type: string (query) Default value: 20 |
| sort | The sort type for listing entries. Type: string (query) |
Responses
| Code | Description |
|---|---|
| 200 |
OK Media type: application/json Example Value: {
"totalElements": 0,
"totalPages": 0,
"number": 0,
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
},
"size": 0,
"content": [
{
"state": "string",
"created": "string",
"userName": "string"
}
],
"first": true,
"last": true,
"pageable": {
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
}
}
}
|