History Queries
Search history query items
Searches for items in a history query with optional filtering
get/api/history/{historyId}/items/search
Path parameters
historyIdstring required
Query parameters
namestring required
enabledboolean required
pagenumber double
Response
Paginated list of items
Example response
{
"content": [
{
"id": "entity123",
"createdBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"updatedBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"createdAt": "2023-10-31T12:34:56.789Z",
"updatedAt": "2023-10-31T12:34:56.789Z"
}
],
"totalElements": 2,
"size": 10,
"totalPages": 1
}