Skip to content

Latest commit

 

History

History
146 lines (115 loc) · 5.88 KB

File metadata and controls

146 lines (115 loc) · 5.88 KB
title unifiedRoleEligibilitySchedule: filterByCurrentUser
description Get a list of the unifiedRoleEligibilitySchedule objects and their properties filtered by a particular user principal
author rkarim-ms
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type apiPageType
ms.date 04/05/2024

unifiedRoleEligibilitySchedule: filterByCurrentUser

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of the unifiedRoleEligibilitySchedule objects and their properties associated with a particular principal object.

[!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-pim-entra-roles-apis]

HTTP request

GET roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='principal')

Function parameters

The following table shows the parameters that can be used with this method.

Parameter Type Description
on roleEligibilityScheduleFilterByCurrentUserOptions The currently signed-in user. Allowed value is principal.

Optional query parameters

This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.

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 unifiedRoleEligibilitySchedule objects in the response body.

Examples

Request

GET https://graph.microsoft.com/beta/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='principal')

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

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

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

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

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

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

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


Response

The following is an example of the response showing an eligibility schedule that is through a group assignment.

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

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

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(unifiedRoleEligibilitySchedule)",
    "value": [
        {
            "@odata.type": "#microsoft.graph.unifiedRoleEligibilitySchedule",
            "id": "6938d75d-ad66-4c7d-9028-0c9b00296945",
            "principalId": "c6ad1942-4afa-47f8-8d48-afb5d8d69d2f",
            "roleDefinitionId": "fe930be7-5e62-47db-91af-98c3a49a38b1",
            "directoryScopeId": "/",
            "appScopeId": null,
            "createdUsing": "6938d75d-ad66-4c7d-9028-0c9b00296945",
            "createdDateTime": "2021-08-09T10:15:05.96Z",
            "modifiedDateTime": "0001-01-01T08:00:00Z",
            "status": "Provisioned",
            "memberType": "Direct",
            "scheduleInfo": {
                "startDateTime": "2021-08-09T10:15:05.96Z",
                "recurrence": null,
                "expiration": {
                    "type": "noExpiration",
                    "endDateTime": null,
                    "duration": null
                }
            }
        }
    ]
}