request 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 the details of a request in PIM or user consent request APIs.
Inherits from entity.
Properties
Property | Type | Description |
---|---|---|
approvalId | String | The identifier of the approval of the request. |
completedDateTime | DateTimeOffset | The request completion date time. |
createdBy | identitySet | The principal that created the request. |
createdDateTime | DateTimeOffset | The request creation date time. |
customData | String | Free text field to define any custom data for the request. Not used. |
id | String | The unique identifier for the request object. Inherited from entity. |
status | String | The status of the request. Not nullable. The possible values are: Canceled , Denied , Failed , Granted , PendingAdminDecision , PendingApproval , PendingProvisioning , PendingScheduleCreation , Provisioned , Revoked , and ScheduleCreated . Not nullable. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.request",
"id": "String (identifier)",
"status": "String",
"completedDateTime": "String (timestamp)",
"createdDateTime": "String (timestamp)",
"approvalId": "String",
"customData": "String",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
}
}