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

name (string)

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

ParameterTypeRequiredDefaultDescription
offsetintegerNo0Pagination offset (number of items to skip).
limitintegerNo10Maximum number of views to return.
searchKeystringNoFilter views by name (case-insensitive contains match).
sortKeystringNoNameField to sort by. Allowed values: Name, CreatedAt.
sortOrderstringNoASCSort 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

application/json

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

PropertyTypeDescription
countintegerNumber of views returned in this response.
views[]objectList of saved view summaries.

View object

PropertyTypeDescription
idstringNeo4j element ID of the view.
namestringName of the saved view.
custombooleanWhether this is a user-created custom view.
createdBystringUsername of the creator.
createdAtstringCreation timestamp (format: YYYY-MM-DD HH:MM:SS).
updatedBystringUsername of the last updater.
updatedAtstringLast update timestamp (format: YYYY-MM-DD HH:MM:SS).