Skip to main content
GET
/
platform
/
entitylists
/
{entityListFullName}
/
views
/
{viewName}
Error
A valid request URL is required to generate request examples
{
  "name": "<string>",
  "usages": [
    "<string>"
  ],
  "metaData": {},
  "security": "<string>",
  "filter": "<string>",
  "defaultSort": "<string>",
  "fields": [
    {
      "name": "<string>",
      "type": "<string>",
      "target": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme.

Path Parameters

entityListFullName
string
required

The full name of the EntityList including namespace in name@nameSpace format

viewName
string
required

The name of the ListView

Query Parameters

responseFields
string

limits which fields are returned in the response body

Response

Success

name
string | null

The name of the ListView. This must be unique for the EntityList.

usages
string[] | null

Usages are arbitratry sting values used to provide instructions for other applications as to the intended areas where the view should be used. Mozu uses the "admin" usage valued to indicate that a ListView should appear in the EntityManager in the Admin UI. The values are open ended and applications may provide any value for a usage. This field can be used in queries to the EntityList.

metaData
object

An arbitrary json property to be used by external applications for any purpose. MZDB will persist and retrieve the metadata without any restrictions.

security
string | null

less restrictive than collection/list security. public | admin | owner

filter
string | null

Indicates a implicitly applied filter to the EntityList for to which the ListView is associated. All queries to the ListView will have this filter applied implicitly.

defaultSort
string | null

Indicates a default sort to be applied to the ListView.

fields
object[] | null

The list of ViewFields for this view. ViewFields can be used to filter or transform the underlying Entity to provide an optimized format for applications which query the ListView. If no ViewFields are specified, entities will be returned for the View with no transform applied.