| 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 |
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]
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]
GET roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='principal')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. |
This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of unifiedRoleEligibilitySchedule objects in the response body.
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]
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
}
}
}
]
}