UserCloudClipboard.Read
Allows the app to read cloud clipboard data on behalf of the signed-in user.
Permission Details
Read cloud clipboard items
Allows the app to read cloud clipboard data on behalf of the signed-in user.
61e8a09a-087f-4e36-8c8c-1c77c5228017
Properties
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
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@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
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
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/me/cloudClipboard/items
|
GET
/me/cloudClipboard/items/{cloudClipboardItemId}
|
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/me/cloudClipboard/items
|
GET
/me/cloudClipboard/items/{cloudClipboardItemId}
|
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 docsMicrosoft 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 docsCode Examples
// 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();
const options = {
authProvider,
};
const client = Client.init(options);
let items = await client.api('/me/cloudClipboard/items')
.version('beta')
.get();
Connect-MgGraph -Scopes "UserCloudClipboard.Read"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/me/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
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Delegated permissions and search for UserCloudClipboard.Read
Grant Admin Consent
Users can consent to this permission during sign-in.