| 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 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a request created for each approver on an approvalItem.
| 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. |
| 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. |
None.
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"
}