Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 2.05 KB

File metadata and controls

58 lines (49 loc) · 2.05 KB
title approvalItemRequest resource type
description Represents collections of requests created for each approver on the approval item.
author asgautam1997
ms.localizationpriority medium
ms.subservice approvals
doc_type resourcePageType
ms.date 08/01/2024

approvalItemRequest resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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