Skip to content

Latest commit

 

History

History
75 lines (63 loc) · 3.07 KB

File metadata and controls

75 lines (63 loc) · 3.07 KB
title scheduledPermissionsRequest resource type
description Represents a request for permissions on resources in a target authorization system that an identity makes through Microsoft Entra Permissions Management, either directly or indirectly.
author mrudulahg01
ms.reviewer ciem_pm
ms.localizationpriority medium
ms.subservice entra-permissions-management
doc_type resourcePageType
ms.date 05/23/2024

scheduledPermissionsRequest resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

[!INCLUDE permissions-management-retirement-note]

Represents a request for permissions on resources in a target authorization system that an identity makes through Microsoft Entra Permissions Management, either directly or indirectly. An authorized administrator can grant, reject, or cancel the request.

Inherits from entity.

Methods

Method Return type Description
Create scheduledPermissionsRequest Create a new scheduledPermissionsRequest object.
Cancel all None Cancels a scheduledPermissionsRequest.

Properties

Property Type Description
createdDateTime DateTimeOffset Defines when the identity created the request.
id String Unique identifier for the permissions request within Permissions Management. Inherited from entity.
justification String The identity's justification for the request.
notes String Additional context for the permissions request.
requestedPermissions permissionsDefinition The permissions requested.
scheduleInfo requestSchedule When to assign the requested permissions.
statusDetail statusDetail The current status of the request. The possible values are: submitted, approved, completed, canceled, rejected, unknownFutureValue.
ticketInfo ticketInfo Ticketing-related metadata that you can use to correlate to the request.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.scheduledPermissionsRequest",
  "id": "String (identifier)",
  "requestedPermissions": {
    "@odata.type": "microsoft.graph.permissionsDefinition"
  },
  "notes": "String",
  "justification": "String",
  "createdDateTime": "String (timestamp)",
  "scheduleInfo": {
    "@odata.type": "microsoft.graph.requestSchedule"
  },
  "ticketInfo": {
    "@odata.type": "microsoft.graph.ticketInfo"
  },
  "statusDetail": "String"
}