Edit

Share via


processContentRequest resource type

Namespace: microsoft.graph

Defines the input payload for the processContent and processContentAsync actions.

Properties

Property Type Description
activityMetadata microsoft.graph.activityMetadata Metadata about the user activity (like upload, download) and location (URL). Required.
contentEntries Collection(microsoft.graph.processContentMetadataBase) A collection of content entries to be processed. Each entry contains the content itself and its metadata. Use conversation metadata for content like prompts and responses and file metadata for files. Required.
deviceMetadata microsoft.graph.deviceMetadata Metadata about the device from which the content originates. Required.
integratedAppMetadata microsoft.graph.integratedApplicationMetadata Metadata about the integrated application making the request. Required.
protectedAppMetadata microsoft.graph.protectedApplicationMetadata Metadata about the protected application making the request. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.processContentRequest",
  "activityMetadata": {
    "@odata.type": "microsoft.graph.activityMetadata"
  },
  "contentEntries": [
    {
      "@odata.type": "microsoft.graph.processContentMetadataBase"
    }
  ],
  "deviceMetadata": {
    "@odata.type": "microsoft.graph.deviceMetadata"
  },
  "integratedAppMetadata": {
    "@odata.type": "microsoft.graph.integratedApplicationMetadata"
  },
  "protectedAppMetadata": {
    "@odata.type": "microsoft.graph.protectedApplicationMetadata"
  }
}