Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 file uploaded as part of a custom data provided resource upload session for Access Reviews with bring-your-own-data (BYOD) capabilities. This resource contains metadata about uploaded CSV files including the file name, size, and upload timestamp.
Files are uploaded via the uploadFile action on an upload session and are accessible by expanding the files navigation property on a customDataProvidedResourceUploadSession.
Methods
This resource doesn't have direct methods. Access files through the files navigation property on customDataProvidedResourceUploadSession using $expand=files.
Properties
| Property | Type | Description |
|---|---|---|
| id | String | Unique identifier for the file. Read-only. |
| name | String | Name of the uploaded file, including the file extension. Required. Supports $filter (eq, ne) and $orderby. |
| size | Int64 | Size of the file in bytes. Read-only. Supports $filter (eq, ne, gt, ge, lt, le) and $orderby. |
| uploadedDateTime | DateTimeOffset | Timestamp when the file was uploaded. Read-only. Supports $filter (eq, ne, gt, ge, lt, le) and $orderby. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customDataProvidedResourceFile",
"id": "String (identifier)",
"name": "String",
"size": "Int64",
"uploadedDateTime": "String (timestamp)"
}