Skip to content

Latest commit

 

History

History
124 lines (96 loc) · 4.73 KB

File metadata and controls

124 lines (96 loc) · 4.73 KB
title customDataProvidedResourceUploadSession: uploadFile
description Upload a file in a customDataProvidedResourceUploadSession
author pratima-cloudknox
ms.date 10/29/2025
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type apiPageType

customDataProvidedResourceUploadSession: uploadFile

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Upload a file in a customDataProvidedResourceUploadSession created for a customDataProvidedResource.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

[!INCLUDE rbac-entitlement-catalog-owner-write]

HTTP request

POST /identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalogId}/accessPackageResources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId}/uploadFile

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type multipart/form-data; boundary={your-boundary}. Required.

Request body

The body can contain a multipart message as shown in the example. The columns in CSV should match the attributes of accessReviewDataUploadTriggerCallbackData object.

Response

If successful, this action returns a 200 OK response code and a customDataProvidedResourceUploadSession in the response body.

Examples

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageCatalogs/73eb2497-3b88-4c0a-8bb3-68ba8162beff/accessPackageResources/99ab2454-3b88-4c0a-8bb3-68ba8162beff/uploadSessions/23f27c15-72f9-45fe-9e9c-e3d8f75bdc44/uploadFile
Content-Type: multipart/form-data; boundary=MyPartBoundary198374

--MyPartBoundary198374
Content-Disposition: form-data; name="file"; filename="valid.csv"
Content-Type: application/octet-stream

PrincipalAADId,ResourceId,ResourceName,ResourceDescription,ResourceType,PermissionId,PermissionName,PermissionDescription,PermissionType,ResourceOwners
john.doe@contoso.com,550e8400-e29b-41d4-a716-446655440000,Building A,Main office building,Building,6ba7b810-9dad-11d1-80b4-00c04fd430c8,Access,Physical access to building,Physical,["admin@contoso.com"]
jane.doe@contoso.com,550e8400-e29b-41d4-a716-446655440001,Room 101,Conference room,Room,6ba7b810-9dad-11d1-80b4-00c04fd430c9,Reserve,Book conference room,Administrative,["admin@contoso.com","manager@contoso.com"]
--MyPartBoundary198374

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "id": "23f27c15-72f9-45fe-9e9c-e3d8f75bdc44",
    "status": "Active",
    "isUploadDone": false,
    "stats": {
        "filesUploaded": 1,
        "totalBytesUploaded": 2000000,
    },
    "files": [
        {
            "name": "building-a-access.csv",
            "size": 2000000,
            "uploadedDateTime": "2024-03-06T01:35:12.123Z"
        }
    ],
    "createdDateTime": "2024-03-06T01:35:12.123Z",
    "expirationDateTime": "2024-03-07T01:35:12.123Z"
}