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

# Platform

## Global Operations

Resource path:

```
/global-config/services/platform
```

Resource version: `1.0`

### getAllTypes

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

**Usage**

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

### getCreatableTypes

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

**Usage**

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

### nextdescendents

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

**Usage**

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

### read

**Usage**

```
am> read Platform --global
```

### update

**Usage**

```
am> update Platform --global --body body
```

**Parameters**

* *\--body*

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

  ```json
  {
    "type" : "object",
    "properties" : {
      "cookieDomains" : {
        "title" : "Cookie Domains",
        "description" : "Set the list of domains into which OpenAM writes cookies.<br><br>If you set multiple cookie domains, OpenAM still only sets the cookie in the domain the client uses to access OpenAM. If this property is left blank, then the fully qualified domain name of the server is used to set the cookie domain, meaning that a host cookie rather than a domain cookie is set.",
        "propertyOrder" : 200,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "locale" : {
        "title" : "Platform Locale",
        "description" : "Set the fallback locale used when the user locale cannot be determined.",
        "propertyOrder" : 100,
        "required" : true,
        "type" : "string",
        "exampleValue" : ""
      }
    }
  }
  ```
