cloudClipboardItem resource type

Namespace: microsoft.graph

Represents the information and properties of a cloudClipboardItem object. Cloud clipboard is a feature that allows a user to copy and paste content across devices and platforms. It also provides users with a history of the items they recently copied across all their apps and devices.

Currently, the feature is supported between Windows devices and swiftKey app on Android devices.

Methods

Method Return type Description
List Collection of cloudClipboardItem Retrieve a list of cloudClipboardItem objects of a given user.
Get cloudClipboardItem Read the properties and relationships of a cloudClipboardItem object.

Properties

Property Type Description
createdDateTime DateTimeOffset Set by the server. DateTime in UTC when the object was created on the server.
expirationDateTime DateTimeOffset Set by the server. DateTime in UTC when the object expires and after that the object is no longer available. The default and also maximum TTL is 12 hours after the creation, but it might change for performance optimization.
id Guid The unique identifier of the object.
lastModifiedDateTime DateTimeOffset Set by the server if not provided in the client's request. DateTime in UTC when the object was modified by the client.
payloads cloudClipboardItemPayload collection A cloudClipboardItem can have multiple cloudClipboardItemPayload objects in the payloads. A window can place more than one clipboard object on the clipboard. Each one represents the same information in a different clipboard format.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.cloudClipboardItem",
  "id": "String (identifier)",
  "payloads": [
    {
      "@odata.type": "microsoft.graph.cloudClipboardItemPayload",
      "content": "String",
      "formatName": "String"
    }
  ],
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "expirationDateTime": "String (timestamp)"
}