Edit

Share via


processContentBatchRequest resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a single entry within a request submitted to the processContentAsync action.

Properties

Property Type Description
contentToProcess processContentRequest The actual content processing request details, including content metadata, activity, device, and app info.
requestId String A unique identifier provided by the client to correlate this specific request item within the batch.
userId String The unique identifier (Object ID or UPN) of the user in whose context the content should be processed.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.processContentBatchRequest",
  "requestId": "String",
  "userId": "String",
  "contentToProcess": {
    "@odata.type": "microsoft.graph.processContentRequest"
  }
}