Saved View

List saved views

List all saved view objects visible to the user.

get/api/v1/saved_views

Query parameters

page_sizeinteger

Number of results per page

cursorstring

A value used for cursor-based pagination. Obtain this value from the next or previous URLs in a paginated response. Do not construct cursor values manually.

queue_idinteger

Return only saved views applicable to the given queue, including saved views with an empty queues_filter.

ordering'id' | '-id' | 'name' | '-name'

Result ordering.

Response

OK

Example response

{
  "results": [
    {
      "id": 123,
      "url": "https://example.rossum.app/api/v1/saved_views/123",
      "name": "High amount invoices",
      "query": {
        "$and": [
          {
            "status": {
              "$in": [
                "to_review"
              ]
            }
          }
        ]
      },
      "queues_filter": [
        "https://example.rossum.app/api/v1/queues/101"
      ],
      "organization": "https://example.rossum.app/api/v1/organizations/406",
      "created_by": "https://example.rossum.app/api/v1/users/9524",
      "created_at": "2026-01-01T15:02:25.653324Z",
      "modified_by": "https://example.rossum.app/api/v1/users/10775",
      "modified_at": "2021-04-26T10:08:03.856648Z"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.