ESC
Type to search...

UserCloudClipboard.Read

Export JSON
Export CSV
Copy URL
Print
Delegated Read User Scope

Allows the app to read cloud clipboard data on behalf of the signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Delegated Permission User consent allowed

Read cloud clipboard items

Allows the app to read cloud clipboard data on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 endpoint-derived-docs

Properties is shown from stable Microsoft Graph v1.0 metadata.

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 DateTimeOffsetNullable 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.
baseUnitOfMeasureId uuidNullable
blocked booleanNullable
displayName stringNullable
gtin stringNullable
inventory decimalNullable
itemCategory object
itemCategoryCode stringNullable
itemCategoryId uuidNullable
number stringNullable
picture picture collection

Showing 15 of 21 properties.

JSON Representation

Microsoft Graph v1.0 endpoint-derived-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "@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)"
}

Relationships

Microsoft Graph v1.0 schema-derived

Relationships is shown from stable Microsoft Graph v1.0 metadata.

Relationship Type Description
baseUnitOfMeasureId uuid Related baseUnitOfMeasureId data exposed by this resource.
id uuid Related id data exposed by this resource.
itemCategoryId uuid Related itemCategoryId data exposed by this resource.
picture picture collection Related picture data exposed by this resource.
taxGroupId uuid Related taxGroupId data exposed by this resource.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /me/cloudClipboard/items
GET /me/cloudClipboard/items/{cloudClipboardItemId}
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /me/cloudClipboard/items
GET /me/cloudClipboard/items/{cloudClipboardItemId}
No Microsoft Learn PowerShell mapping available

Microsoft Graph PowerShell v1.0 commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.

No deterministic PowerShell command map is available for this permission.

Browse PowerShell docs
No Microsoft Learn PowerShell mapping available

Microsoft Graph PowerShell beta commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.

No deterministic PowerShell command map is available for this permission.

Browse PowerShell docs

Code Examples

C# / .NET SDK
List cloudClipboard items
// Code snippets are only available for the latest version. Current version is 5.x

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.CloudClipboard.Items.GetAsync();
JavaScript
List cloudClipboard items
const options = {
	authProvider,
};

const client = Client.init(options);

let items = await client.api('/me/cloudClipboard/items')
	.version('beta')
	.get();
PowerShell
Connect-MgGraph -Scopes "UserCloudClipboard.Read"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/me/cloudClipboard/items"
Python
List cloudClipboard items
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python

result = await graph_client.me.cloud_clipboard.items.get()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Delegated permissions and search for UserCloudClipboard.Read

4

Grant Admin Consent

Users can consent to this permission during sign-in.