---
title: Dashboard
description: Resource path:
component: pingam
version: 8.1
page_id: pingam:entity-reference:sec-amster-entity-dashboard
canonical_url: https://docs.pingidentity.com/pingam/8.1/entity-reference/sec-amster-entity-dashboard.html
section_ids:
  sec-amster-entity-dashboard-realm-ops: Realm Operations
  sec-amster-entity-dashboard-realm-ops-create: create
  sec-amster-entity-dashboard-realm-ops-delete: delete
  sec-amster-entity-dashboard-realm-ops-getalltypes: getAllTypes
  sec-amster-entity-dashboard-realm-ops-getcreatabletypes: getCreatableTypes
  sec-amster-entity-dashboard-realm-ops-nextdescendents: nextdescendents
  sec-amster-entity-dashboard-realm-ops-read: read
  sec-amster-entity-dashboard-realm-ops-update: update
  sec-amster-entity-dashboard-global-ops: Global Operations
  sec-amster-entity-dashboard-global-ops-getalltypes: getAllTypes
  sec-amster-entity-dashboard-global-ops-getcreatabletypes: getCreatableTypes
  sec-amster-entity-dashboard-global-ops-nextdescendents: nextdescendents
  sec-amster-entity-dashboard-global-ops-read: read
  sec-amster-entity-dashboard-global-ops-update: update
---

# Dashboard

## Realm Operations

Resource path:

```
/realm-config/services/dashboard
```

Resource version: `0.0`

### create

**Usage**

```
am> create Dashboard --realm Realm --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "assignedDashboard" : {
        "title" : "Available Dashboard Apps",
        "description" : "List of application dashboard names available by default for realms with the Dashboard service configured.",
        "propertyOrder" : 700,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      }
    }
  }
  ```

### delete

**Usage**

```
am> delete Dashboard --realm Realm
```

### getAllTypes

Obtain the collection of all secondary configuration types related to the resource.

**Usage**

```
am> action Dashboard --realm Realm --actionName getAllTypes
```

### getCreatableTypes

Obtain the collection of secondary configuration types that have yet to be added to the resource.

**Usage**

```
am> action Dashboard --realm Realm --actionName getCreatableTypes
```

### nextdescendents

Obtain the collection of secondary configuration instances that have been added to the resource.

**Usage**

```
am> action Dashboard --realm Realm --actionName nextdescendents
```

### read

**Usage**

```
am> read Dashboard --realm Realm
```

### update

**Usage**

```
am> update Dashboard --realm Realm --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "assignedDashboard" : {
        "title" : "Available Dashboard Apps",
        "description" : "List of application dashboard names available by default for realms with the Dashboard service configured.",
        "propertyOrder" : 700,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      }
    }
  }
  ```

## Global Operations

Resource path:

```
/global-config/services/dashboard
```

Resource version: `1.0`

### getAllTypes

Obtain the collection of all secondary configuration types related to the resource.

**Usage**

```
am> action Dashboard --global --actionName getAllTypes
```

### getCreatableTypes

Obtain the collection of secondary configuration types that have yet to be added to the resource.

**Usage**

```
am> action Dashboard --global --actionName getCreatableTypes
```

### nextdescendents

Obtain the collection of secondary configuration instances that have been added to the resource.

**Usage**

```
am> action Dashboard --global --actionName nextdescendents
```

### read

**Usage**

```
am> read Dashboard --global
```

### update

**Usage**

```
am> update Dashboard --global --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "defaults" : {
        "properties" : {
          "assignedDashboard" : {
            "title" : "Available Dashboard Apps",
            "description" : "List of application dashboard names available by default for realms with the Dashboard service configured.",
            "propertyOrder" : 700,
            "required" : true,
            "items" : {
              "type" : "string"
            },
            "type" : "array",
            "exampleValue" : ""
          }
        },
        "type" : "object",
        "title" : "Realm Defaults"
      }
    }
  }
  ```
