scheduledPermissionsRequest resource type

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.

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"
}