Microsoft Graph · Schema

processContentBatchRequest

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentToProcess object
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.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprocesscontentbatchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.processContentBatchRequest",
  "title": "processContentBatchRequest",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentToProcess": {
      "$ref": "#/components/schemas/microsoft.graph.processContentRequest"
    },
    "requestId": {
      "type": "string",
      "description": "A unique identifier provided by the client to correlate this specific request item within the batch.",
      "nullable": true
    },
    "userId": {
      "type": "string",
      "description": "The unique identifier (Object ID or UPN) of the user in whose context the content should be processed.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}