approvalItemRequest 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 created for each approver on an approvalItem.

Methods

Method Return type Description
List approvalItemRequest collection Get a collection of approvalItemRequest objects and their properties, associated with an approvalItem.
Get approvalItemRequest Read the properties and relationships of an approvalItemRequest object.

Properties

Property Type Description
approver approvalIdentitySet The identity set of the principal assigned to this request.
createdDateTime DateTimeOffset Creation date and time for the request.
isReassigned Boolean Indicates whether a request was reassigned.
reassignedFrom approvalIdentitySet The identity set of the principal who reassigned the request.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.approvalItemRequest",
  "createdDateTime": "String (timestamp)",
  "approver": {
    "@odata.type": "microsoft.graph.approvalIdentitySet"
  },
  "reassignedFrom": {
    "@odata.type": "microsoft.graph.approvalIdentitySet"
  },
  "isReassigned": "Boolean"
}