Every API here is available over the APIs.io API and to AI agents over MCP.
openapi: 3.2.0
info:
title: Microsoft Graph Admin Admin.admin Me.user.Actions API
description: 'Microsoft Graph API for managing administrative resources in Microsoft Entra ID.
This API enables administrators to manage Microsoft Edge browser settings, Internet Explorer mode configurations,
site lists, shared browser sites, Microsoft 365 Apps installation options, people insights, service announcements,
SharePoint settings, Copilot administration, directory administrative units, and admin consent policies.'
version: 1.0.0
contact:
name: Microsoft Graph API Support
url: https://developer.microsoft.com/graph
servers:
- url: https://graph.microsoft.com/v1.0
description: Microsoft Graph API v1.0 endpoint
tags:
- name: me.user.Actions
paths:
/me/assignLicense:
description: Provides operations to call the assignLicense method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action assignLicense
description: Add or remove licenses for the user to enable or disable their use of Microsoft cloud offerings that the company has licenses to. For example, an organization can have a Microsoft 365 Enterprise E3 subscription with 100 licenses, and this request assigns one of those licenses to a specific user. You can also enable and disable specific plans associated with a subscription. Direct user licensing method is an alternative to group-based licensing.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-1.0
operationId: me.assignLicense
requestBody:
$ref: '#/components/requestBodies/assignLicenseRequestBody'
responses:
2XX:
$ref: '#/components/responses/assignLicenseResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/changePassword:
description: Provides operations to call the changePassword method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action changePassword
description: 'Update the signed-in user''s password. Any user can update their password without belonging to any administrator role.
To update another user''s password in either delegated or app-only scenarios, update the passwordProfile property of the user instead. See Example 3: Update the passwordProfile of a user and reset their password.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-1.0
operationId: me.changePassword
requestBody:
$ref: '#/components/requestBodies/changePasswordRequestBody'
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/checkMemberGroups:
description: Provides operations to call the checkMemberGroups method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action checkMemberGroups
description: 'Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. The specified object can be of one of the following types:
- user
- group
- service principal
- organizational contact
- device
- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0
operationId: me.checkMemberGroups
requestBody:
description: Action parameters
content:
application/json:
schema:
type: object
properties:
groupIds:
type: array
items:
type: string
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
type: object
allOf:
- $ref: '#/components/schemas/BaseCollectionPaginationCountResponse'
- type: object
properties:
value:
type: array
items:
type: string
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/checkMemberObjects:
description: Provides operations to call the checkMemberObjects method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action checkMemberObjects
description: "Check for membership in a list of group IDs, administrative unit IDs, or directory role IDs, for the IDs of the specified \n- user\n- group\n- service principal\n- organizational contact\n- device\n- directory object. This method is transitive."
operationId: me.checkMemberObjects
requestBody:
description: Action parameters
content:
application/json:
schema:
type: object
properties:
ids:
type: array
items:
type: string
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
type: object
allOf:
- $ref: '#/components/schemas/BaseCollectionPaginationCountResponse'
- type: object
properties:
value:
type: array
items:
type: string
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/exportPersonalData:
description: Provides operations to call the exportPersonalData method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action exportPersonalData
description: Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more information about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0
operationId: me.exportPersonalData
requestBody:
$ref: '#/components/requestBodies/exportPersonalDataRequestBody'
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/findMeetingTimes:
description: Provides operations to call the findMeetingTimes method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action findMeetingTimes
description: 'Suggest meeting times and locations based on organizer and attendee availability, and time or location constraints specified as parameters. If findMeetingTimes cannot return any meeting suggestions, the response would indicate a reason in the emptySuggestionsReason property.
Based on this value, you can better adjust the parameters and call findMeetingTimes again. The algorithm used to suggest meeting times and locations undergoes fine-tuning from time to time. In scenarios like test environments where the input parameters and calendar data remain static, expect that the suggested results may differ over time.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0
operationId: me.findMeetingTimes
requestBody:
$ref: '#/components/requestBodies/findMeetingTimesRequestBody'
responses:
2XX:
$ref: '#/components/responses/findMeetingTimesResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/getMailTips:
description: Provides operations to call the getMailTips method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action getMailTips
description: 'Get the MailTips of one or more recipients as available to the signed-in user. Note that by making a POST call to the getMailTips action, you can request specific types of MailTips to
be returned for more than one recipient at one time. The requested MailTips are returned in a mailTips collection.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-1.0
operationId: me.getMailTips
requestBody:
$ref: '#/components/requestBodies/getMailTipsRequestBody'
responses:
2XX:
$ref: '#/components/responses/getMailTipsResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/getMemberGroups:
description: Provides operations to call the getMemberGroups method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action getMemberGroups
description: Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0
operationId: me.getMemberGroups
requestBody:
description: Action parameters
content:
application/json:
schema:
type: object
properties:
securityEnabledOnly:
type: boolean
default: false
nullable: true
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
type: object
allOf:
- $ref: '#/components/schemas/BaseCollectionPaginationCountResponse'
- type: object
properties:
value:
type: array
items:
type: string
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/getMemberObjects:
description: Provides operations to call the getMemberObjects method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action getMemberObjects
description: 'Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:
- user
- group
- service principal
- organizational contact
- device
- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0
operationId: me.getMemberObjects
requestBody:
description: Action parameters
content:
application/json:
schema:
type: object
properties:
securityEnabledOnly:
type: boolean
default: false
nullable: true
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
type: object
allOf:
- $ref: '#/components/schemas/BaseCollectionPaginationCountResponse'
- type: object
properties:
value:
type: array
items:
type: string
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/removeAllDevicesFromManagement:
description: Provides operations to call the removeAllDevicesFromManagement method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action removeAllDevicesFromManagement
description: Retire all devices from management for this user
operationId: me.removeAllDevicesFromManagement
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/reprocessLicenseAssignment:
description: Provides operations to call the reprocessLicenseAssignment method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action reprocessLicenseAssignment
description: Reprocess all group-based license assignments for the user. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. Also see Identify and resolve license assignment problems for a group in Microsoft Entra ID for more details.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-1.0
operationId: me.reprocessLicenseAssignment
responses:
2XX:
$ref: '#/components/responses/reprocessLicenseAssignmentResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/restore:
description: Provides operations to call the restore method.
x-ms-docs-grouped-path:
- /me/cloudPCs/{cloudPC-id}/restore
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action restore
description: 'Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:
- administrativeUnit
- application
- certificateBasedAuthPki
- certificateAuthorityDetail
- group
- servicePrincipal
- user If an item is accidentally deleted, you can fully restore the item. Additionally, restoring an application doesn''t automatically restore the associated service principal automatically. You must call this API to explicitly restore the deleted service principal. A recently deleted item remains available for up to 30 days. After 30 days, the item is permanently deleted.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0
operationId: me.restore
responses:
2XX:
description: Success
content:
application/json:
schema:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
- type: object
nullable: true
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/retryServiceProvisioning:
description: Provides operations to call the retryServiceProvisioning method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action retryServiceProvisioning
description: Retry the provisioning of a user object in Microsoft Entra ID.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0
operationId: me.retryServiceProvisioning
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/revokeSignInSessions:
description: Provides operations to call the revokeSignInSessions method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action revokeSignInSessions
description: Invalidates all the refresh tokens issued to applications for a user (and session cookies in a user's browser), by resetting the signInSessionsValidFromDateTime user property to the current date-time. Typically, this operation is performed (by the user or an administrator) if the user has a lost or stolen device. This operation prevents access to the organization's data through applications on the device by requiring the user to sign in again to all applications that they consented to previously, independent of device.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-1.0
operationId: me.revokeSignInSessions
responses:
2XX:
$ref: '#/components/responses/revokeSignInSessionsResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/sendMail:
description: Provides operations to call the sendMail method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action sendMail
description: 'Send the message specified in the request body using either JSON or MIME format. When using JSON format, you can include a file attachment in the same sendMail action call. When using MIME format: This method saves the message in the Sent Items folder. Alternatively, create a draft message to send later. To learn more about the steps involved in the backend before a mail is delivered to recipients, see here.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-1.0
operationId: me.sendMail
requestBody:
$ref: '#/components/requestBodies/sendMailRequestBody'
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
/me/translateExchangeIds:
description: Provides operations to call the translateExchangeIds method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action translateExchangeIds
description: Translate identifiers of Outlook-related resources between formats.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-1.0
operationId: me.translateExchangeIds
requestBody:
$ref: '#/components/requestBodies/translateExchangeIdsRequestBody'
responses:
2XX:
$ref: '#/components/responses/translateExchangeIdsResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
/me/wipeManagedAppRegistrationsByDeviceTag:
description: Provides operations to call the wipeManagedAppRegistrationsByDeviceTag method.
post:
tags:
- me.user.Actions
summary: Microsoft Graph Invoke action wipeManagedAppRegistrationsByDeviceTag
description: Issues a wipe operation on an app registration with specified device tag.
operationId: me.wipeManagedAppRegistrationsByDeviceTag
requestBody:
$ref: '#/components/requestBodies/wipeManagedAppRegistrationsByDeviceTagRequestBody'
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
components:
schemas:
microsoft.graph.listInfo:
title: listInfo
required:
- '@odata.type'
type: object
properties:
contentTypesEnabled:
type: boolean
description: If true, indicates that content types are enabled for this list.
nullable: true
hidden:
type: boolean
description: If true, indicates that the list isn't normally visible in the SharePoint user experience.
nullable: true
template:
type: string
description: An enumerated value that represents the base list template used in creating the list. Possible values include documentLibrary, genericList, task, survey, announcements, contacts, and more.
nullable: true
'@odata.type':
type: string
microsoft.graph.sizeRange:
title: sizeRange
required:
- '@odata.type'
type: object
properties:
maximumSize:
maximum: 2147483647
minimum: -2147483648
type: number
description: The maximum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.
format: int32
nullable: true
minimumSize:
maximum: 2147483647
minimum: -2147483648
type: number
description: The minimum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.
format: int32
nullable: true
'@odata.type':
type: string
microsoft.graph.virtualEventExternalRegistrationInformation:
title: virtualEventExternalRegistrationInformation
required:
- '@odata.type'
type: object
properties:
referrer:
type: string
description: A URL or string that represents the location from which the registrant registered. Optional.
nullable: true
registrationId:
type: string
description: The identifier for a virtualEventExternalRegistrationInformation object. Optional. If set, the maximum supported length is 256 characters.
nullable: true
'@odata.type':
type: string
microsoft.graph.windowsDeviceHealthState:
title: windowsDeviceHealthState
enum:
- clean
- fullScanPending
- rebootPending
- manualStepsPending
- offlineScanPending
- critical
type: string
description: Computer endpoint protection state
x-ms-enum-flags:
isFlags: true
x-ms-enum:
name: windowsDeviceHealthState
modelAsString: false
values:
- value: clean
description: Computer is clean and no action is required
name: clean
- value: fullScanPending
description: Computer is in pending full scan state
name: fullScanPending
- value: rebootPending
description: Computer is in pending reboot state
name: rebootPending
- value: manualStepsPending
description: Computer is in pending manual steps state
name: manualStepsPending
- value: offlineScanPending
description: Computer is in pending offline scan state
name: offlineScanPending
- value: critical
description: Computer is in critical failure state
name: critical
microsoft.graph.identity:
title: identity
required:
- '@odata.type'
type: object
properties:
displayName:
type: string
description: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta.
nullable: true
id:
type: string
description: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review.
nullable: true
'@odata.type':
type: string
discriminator:
propertyName: '@odata.type'
mapping:
'#microsoft.graph.azureCommunicationServicesUserIdentity': '#/components/schemas/microsoft.graph.azureCommunicationServicesUserIdentity'
'#microsoft.graph.communicationsApplicationIdentity': '#/components/schemas/microsoft.graph.communicationsApplicationIdentity'
'#microsoft.graph.communicationsApplicationInstanceIdentity': '#/components/schemas/microsoft.graph.communicationsApplicationInstanceIdentity'
'#microsoft.graph.communicationsEncryptedIdentity': '#/components/schemas/microsoft.graph.communicationsEncryptedIdentity'
'#microsoft.graph.communicationsGuestIdentity': '#/components/schemas/microsoft.graph.communicationsGuestIdentity'
'#microsoft.graph.communicationsPhoneIdentity': '#/components/schemas/microsoft.graph.communicationsPhoneIdentity'
'#microsoft.graph.communicationsUserIdentity': '#/components/schemas/microsoft.graph.communicationsUserIdentity'
'#microsoft.graph.emailIdentity': '#/components/schemas/microsoft.graph.emailIdentity'
'#microsoft.graph.initiator': '#/components/schemas/microsoft.graph.initiator'
'#microsoft.graph.provisionedIdentity': '#/components/schemas/microsoft.graph.provisionedIdentity'
'#microsoft.graph.provisioningServicePrincipal': '#/components/schemas/microsoft.graph.provisioningServicePrincipal'
'#microsoft.graph.provisioningSystem': '#/components/schemas/microsoft.graph.provisioningSystem'
'#microsoft.graph.servicePrincipalIdentity': '#/components/schemas/microsoft.graph.servicePrincipalIdentity'
'#microsoft.graph.sharePointIdentity': '#/components/schemas/microsoft.graph.sharePointIdentity'
'#microsoft.graph.teamworkApplicationIdentity': '#/components/schemas/microsoft.graph.teamworkApplicationIdentity'
'#microsoft.graph.teamworkConversationIdentity': '#/components/schemas/microsoft.graph.teamworkConversationIdentity'
'#microsoft.graph.teamworkTagIdentity': '#/components/schemas/microsoft.graph.teamworkTagIdentity'
'#microsoft.graph.teamworkUserIdentity': '#/components/schemas/microsoft.graph.teamworkUserIdentity'
'#microsoft.graph.userIdentity': '#/components/schemas/microsoft.graph.userIdentity'
'#microsoft.graph.callRecords.userIdentity': '#/components/schemas/microsoft.graph.callRecords.userIdentity'
microsoft.graph.specialFolder:
title: specialFolder
required:
- '@odata.type'
type: object
properties:
name:
type: string
description: The unique identifier for this item in the /drive/special collection
nullable: true
'@odata.type':
type: string
microsoft.graph.workbookIcon:
title: workbookIcon
required:
- '@odata.type'
type: object
properties:
index:
maximum: 2147483647
minimum: -2147483648
type: number
description: The index of the icon in the given set.
format: int32
set:
type: string
description: 'The set that the icon is part of. The possible values are: Invalid, ThreeArrows, ThreeArrowsGray, ThreeFlags, ThreeTrafficLights1, ThreeTrafficLights2, ThreeSigns, ThreeSymbols, ThreeSymbols2, FourArrows, FourArrowsGray, FourRedToBlack, FourRating, FourTrafficLights, FiveArrows, FiveArrowsGray, FiveRating, FiveQuarters, ThreeStars, ThreeTriangles, FiveBoxes.'
'@odata.type':
type: string
microsoft.graph.appLogUploadState:
title: appLogUploadState
enum:
- pending
- completed
- failed
- unknownFutureValue
type: string
description: AppLogUploadStatus
x-ms-enum:
name: appLogUploadState
modelAsString: false
values:
- value: pending
description: Default. Indicates that request is waiting to be processed or under processing.
name: pending
- value: completed
description: Indicates that request is completed with file uploaded to Azure blob for download.
name: completed
- value: failed
description: Indicates that request is completed with file uploaded to Azure blob for download.
name: failed
- value: unknownFutureValue
description: Evolvable enumeration sentinel value. Do not use.
name: unknownFutureValue
microsoft.graph.operationStatus:
title: operationStatus
enum:
- NotStarted
- Running
- Completed
- Failed
type: string
microsoft.graph.meetingTimeSuggestion:
title: meetingTimeSuggestion
required:
- '@odata.type'
type: object
properties:
attendeeAvailability:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.attendeeAvailability'
description: An array that shows the availability status of each attendee for this meeting suggestion.
confidence:
oneOf:
- type: number
format: double
nullable: true
- type: string
nullable: true
- $ref: '#/components/schemas/ReferenceNumeric'
description: A percentage that represents the likelhood of all the attendees attending.
locations:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.location'
description: An array that specifies the name and geographic location of each meeting location for this meeting suggestion.
meetingTimeSlot:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.timeSlot'
- type: object
nullable: true
description: A time period suggested for the meeting.
order:
maximum: 2147483647
minimum: -2147483648
type: number
description: Order of meeting time suggestions sorted by their computed confidence value from high to low, then by chronology if there are suggestions with the same confidence.
format: int32
nullable: true
organizerAvailability:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.freeBusyStatus'
- type: object
nullable: true
# --- truncated at 32 KB (1032 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/microsoft-graph/refs/heads/main/openapi/microsoft-graph-me-user-actions-api-openapi.yml