Skip to content

Latest commit

 

History

History
62 lines (52 loc) · 2.46 KB

File metadata and controls

62 lines (52 loc) · 2.46 KB
title processContentRequest resource type
description Defines the input payload for the processContent and processContentAsync actions.
author ArunGedela
ms.date 04/08/2025
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType

processContentRequest resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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"
  }
}