| title | customDataProvidedResourceUploadSession resource type |
|---|---|
| description | An upload session within which multiple files can be uploaded for this resource. |
| author | pratima-cloudknox |
| ms.date | 10/29/2025 |
| ms.localizationpriority | medium |
| ms.subservice | entra-id-governance |
| doc_type | resourcePageType |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a customDataProvidedResourceUploadSession created on a customDataProvidedResource. For more information, see Include custom data provided resource in the catalog for catalog user Access Reviews (Preview).
Inherits from entity.
| Method | Return type | Description |
|---|---|---|
| Create | customDataProvidedResourceUploadSession | Create a new customDataProvidedResourceUploadSession object. |
| Get | customDataProvidedResourceUploadSession | Read the properties and relationships of customDataProvidedResourceUploadSession object. |
| Update | customDataProvidedResourceUploadSession | Update the properties of a customDataProvidedResourceUploadSession object. |
| uploadFile | customDataProvidedResourceUploadSession | Upload a file in this upload session. |
| Property | Type | Description |
|---|---|---|
| createdDateTime | DateTimeOffset | DateTime when the upload session was created. Read-only. |
| data | customExtensionData | An object containing the context for which this data is being uploaded. Currently the only possible concrete type is accessReviewResourceDataUploadSessionContextData |
| id | String | Unique identifier of the upload session. Read-only. |
| isUploadDone | Boolean | Indicates if all the necessary files have been uploaded to this session. |
| source | String | The source of the access data. This should be set to the customdataprovidedresource's name when creating the session. |
| stats | customDataProvidedResourceUploadStats | Metadata about the files uploaded in this upload session thus far. |
| status | customDataProvidedResourceUploadStatus | Status of the upload session. The possible values are: active, complete, expired, unknownFutureValue. |
| type | String | Schematized form of the expected CSV columns in the uploaded file. The only possible value currently is: accessReviewDataUploadTriggerCallbackData |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customDataProvidedResourceUploadSession",
"id": "String (identifier)",
"status": "String",
"isUploadDone": "Boolean",
"stats": {
"@odata.type": "microsoft.graph.customDataProvidedResourceUploadStats"
},
"createdDateTime": "String (timestamp)",
"source": "String",
"type": "String",
"data": {
"@odata.type": "microsoft.graph.customExtensionData"
}
}