List Saved Views (Reserved)
Overview
Retrieve a paginated list of saved views for an application, with optional search and sorting.
URI
GET /rest/applications/{name}/saved-views
Path parameters
This parameter identifies the analyzed application. The application name must be properly encoded if it is required. Character back-quote is not allowed.
Query parameters
| Parameter | Type | Required | Default | Description |
|---|
| offset | integer | No | 0 | Pagination offset (number of items to skip). |
| limit | integer | No | 10 | Maximum number of views to return. |
| searchKey | string | No | | Filter views by name (case-insensitive contains match). |
| sortKey | string | No | Name | Field to sort by. Allowed values: Name, CreatedAt. |
| sortOrder | string | No | ASC | Sort direction. Allowed values: ASC, DESC. |
Usage Examples
Basic listing
GET /rest/applications/MyApp/saved-views?offset=0&limit=10
Search by name with sorting
GET /rest/applications/MyApp/saved-views?searchKey=architecture&sortKey=CreatedAt&sortOrder=DESC
Responses
Success Response
{
"count": 10,
"views": [
{
"id": "4:33cdac75-40b4-4b7c-939b-1a4f316defb4:243288",
"name": "view1",
"custom": false,
"createdBy": "admin",
"createdAt": "2026-02-10 11:22:34",
"updatedBy": "admin",
"updatedAt": "2026-02-10 11:22:34"
},
{
"id": "4:33cdac75-40b4-4b7c-939b-1a4f316defb4:243272",
"name": "View2",
"custom": false,
"createdBy": "admin",
"createdAt": "2026-02-05 13:37:24",
"updatedBy": "admin",
"updatedAt": "2026-02-05 13:37:24"
}
]
}
Error Response
{
"code": 1,
"message": "'UnknownApp' application is not found",
"status": 404
}
JSON representation
Response
| Property | Type | Description |
|---|
| count | integer | Number of views returned in this response. |
| views | []object | List of saved view summaries. |
View object
| Property | Type | Description |
|---|
| id | string | Neo4j element ID of the view. |
| name | string | Name of the saved view. |
| custom | boolean | Whether this is a user-created custom view. |
| createdBy | string | Username of the creator. |
| createdAt | string | Creation timestamp (format: YYYY-MM-DD HH:MM:SS). |
| updatedBy | string | Username of the last updater. |
| updatedAt | string | Last update timestamp (format: YYYY-MM-DD HH:MM:SS). |