Skip to content

Latest commit

 

History

History
138 lines (109 loc) · 5.03 KB

File metadata and controls

138 lines (109 loc) · 5.03 KB
title List roleEligibilitySchedules
description Get a list of the unifiedRoleEligibilitySchedule objects and their properties.
author rkarim-ms
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type apiPageType
ms.date 04/05/2024

List roleEligibilitySchedules

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of the unifiedRoleEligibilitySchedule objects and their properties.

[!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

Optional query parameters

This method supports the $select and $filter OData query parameters 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

[!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 example shows the response.

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#roleManagement/directory/roleEligibilitySchedules",
  "value": [
    {
      "id": "313af44a-07c9-43a7-9970-5072a6b5591f",
      "principalId": "398164b1-5196-49dd-ada2-364b49f99b27",
      "roleDefinitionId": "fdd7a751-b60b-444a-984c-02652fe8fa1c",
      "directoryScopeId": "/",
      "appScopeId": null,
      "createdUsing": "313af44a-07c9-43a7-9970-5072a6b5591f",
      "createdDateTime": "2021-07-27T13:51:08.43Z",
      "modifiedDateTime": "0001-01-01T08:00:00Z",
      "status": "Provisioned",
      "memberType": "Direct",
      "scheduleInfo": {
        "startDateTime": "2021-07-27T13:51:08.43Z",
        "recurrence": null,
        "expiration": {
          "type": "noExpiration",
          "endDateTime": null,
          "duration": null
        }
      }
    }
  ]
}