Get Entities

get

/vision/api/v2/entities

Gets all entities that the requesting user has access to.
Unified Assurance roles with the following Vision package permissions have access to this endpoint:
  • Admin
  • Operator
  • Viewer
  • Api

Request

Query Parameters
  • URL-encoded JSON filter expression used to filter results (e.g., AND/OR conditions on fields).
    Example:
    {"and":[{"property":"<PropertyName>","value":"<PropertyValue>","operator":"like"}]}, encoded example = %7B%22and%22%3A%5B%7B%22property%22%3A%22%3CPropertyName%3E%22%2C%22value%22%3A%22%3CPropertyValue%3E%22%2C%22operator%22%3A%22like%22%7D%5D%7D
  • Minimum Value: 0
    Maximum number of items to return in the response (page size).
    Default Value: 100
    Example:
    25
  • URL-encoded JSON array specifying sort order.
    Example:
    [{"property":"<PropertyName>","direction":"DESC"}], encoded example = %5B%7B%22property%22%3A%22%3CPropertyName%3E%22%2C%22direction%22%3A%22DESC%22%7D%5D
  • Minimum Value: 1
    Index of the first item to return. Used with `limit` to paginate results.
    Default Value: 1
    Example:
    2

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ResourceWrapper28
Type: object
The response resource wrapper.
Show Source
Nested Schema : columns
Type: array
Information about the columns used to display the requested or updated content.
Show Source
Nested Schema : schema
Type: object
The layer details.
Show Source
Nested Schema : ColumnData
Type: object
The details of columns to use to show data in a table.
Show Source

401 Response

Unauthorized Access
Body ()
Root Schema : schema
Type: object
The error response details.
Show Source

500 Response

An internal server error occurred while accessing the database or performing a database operation.
Body ()
Root Schema : schema
Type: object
The error response details.
Show Source
Back to Top