List subjectRightsRequests

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.

Get a list of subjectRightsRequest objects and their properties.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

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.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) SubjectRightsRequest.Read.All SubjectRightsRequest.ReadWrite.All
Delegated (personal Microsoft account) Not supported. Not supported.
Application Not supported. Not supported.

HTTP request

Caution

The subject rights request API under the /privacy node is deprecated and will stop returning data on March 30, 2025. Please use the new path under /security.

GET /security/subjectRightsRequests
GET /privacy/subjectRightsRequests

Optional query parameters

This method doesn't support the OData query parameters to help customize the response.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of subjectRightsRequest objects in the response body.

Examples

Request

GET https://graph.microsoft.com/beta/privacy/subjectRightsRequests

Response

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

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

{
    "value": [
        {
            "type": "export",
            "dataSubjectType": "customer",
            "regulations": [
                "GDPR"
            ],
            "displayName": "Export request for Monica Thompson",
            "description": "This is a export request",
            "status": "active",
            "internalDueDateTime": "2022-06-20T22:42:28Z",
            "lastModifiedDateTime": "2022-04-20T22:42:28Z",
            "id": "efee1b77-fb3b-4f65-99d6-274c11914d12",
            "createdDateTime": "2022-04-19T22:42:28Z",
            "stages": [
                {
                    "stage": "contentRetrieval",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "contentReview",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "generateReport",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "caseResolved",
                    "status": "notStarted",
                    "error": null
                }
            ],
            "createdBy": {
                "user": {
                    "id": "1B761ED2-AA7E-4D82-9CF5-C09D737B6167",
                    "displayName": "srradmin@contoso.com"
                }
            },
            "lastModifiedBy": {
                "user": {
                    "id": "1B761ED2-AA7E-4D82-9CF5-C09D737B6167",
                    "displayName": "srradmin@contoso.com"
                }
            },
            "dataSubject": {
                "firstName": "Monica",
                "lastName": "Thompson",
                "email": "Monica.Thompson@contoso.com",
                "residency": "USA"
            },
            "team": {
                "id": "5484809c-fb5b-415a-afc6-da7ff601034e",
                "webUrl": "https://teams.contoso.com/teams/teamid"
            },
            "includeAllVersions": false,
            "pauseAfterEstimate": true,
            "includeAuthoredContent": true,
            "externalId": null,
            "contentQuery": "(('Monica Thompson' OR 'Monica.Thompson@contoso.com') OR (participants=Monica.Thompson@contoso.com))",
            "mailboxLocations": null,
            "siteLocations": {
                "@odata.type": "microsoft.graph.subjectRightsRequestAllSiteLocation"
            }
        },
        {
            "type": "export",
            "dataSubjectType": "customer",
            "regulations": [
                "GDPR"
            ],
            "displayName": "Export request for Alex.Wilber",
            "description": "This is a export request",
            "status": "active",
            "internalDueDateTime": "2022-06-20T22:42:28Z",
            "lastModifiedDateTime": "2022-04-20T22:42:28Z",
            "id": "efee1b77-fb3b-4f65-99d6-274c11914d12",
            "createdDateTime": "2022-04-19T22:42:28Z",
            "stages": [
                {
                    "stage": "contentRetrieval",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "contentReview",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "generateReport",
                    "status": "notStarted",
                    "error": null
                },
                {
                    "stage": "caseResolved",
                    "status": "notStarted",
                    "error": null
                }
            ],
            "createdBy": {
                "user": {
                    "id": "1B761ED2-AA7E-4D82-9CF5-C09D737B6167",
                    "displayName": "srradmin@contoso.com"
                }
            },
            "lastModifiedBy": {
                "user": {
                    "id": "1B761ED2-AA7E-4D82-9CF5-C09D737B6167",
                    "displayName": "srradmin@contoso.com"
                }
            },
            "dataSubject": {
                "firstName": "Alex",
                "lastName": "Wilber",
                "email": "Alex.Wilber@contoso.com"
            },
            "team": {
                "id": "5484809c-fb5b-415a-afc6-da7ff601034e",
                "webUrl": "https://teams.contoso.com/teams/teamid"
            },
            "includeAllVersions": false,
            "pauseAfterEstimate": true,
            "includeAuthoredContent": true,
            "externalId": null,
            "contentQuery": "(('Alex Wilber' OR 'Alex.Wilber@contoso.com') OR (participants=Alex.Wilber@contoso.com))",
            "mailboxLocations": {
                "@odata.type": "microsoft.graph.subjectRightsRequestAllMailBoxLocation"
            },
            "siteLocations": {
                "@odata.type": "microsoft.graph.subjectRightsRequestAllSiteLocation"
            }
        }
    ]
}