| title | approvalItemResponse resource type |
|---|---|
| description | Represents a response to an approval item request. |
| author | asgautam1997 |
| ms.localizationpriority | medium |
| ms.subservice | approvals |
| doc_type | resourcePageType |
| ms.date | 08/01/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a response to an approval item request.
| Method | Return type | Description |
|---|---|---|
| List | approvalItemResponse collection | Get a list of the approvalItemResponse objects and their properties. |
| Create | approvalItemResponse | Create a new approvalItemResponse object. |
| Get | approvalItemResponse | Read the properties and relationships of an approvalItemResponse object. |
| Property | Type | Description |
|---|---|---|
| comments | String | The comment made by the approver. |
| createdBy | approvalIdentitySet | The identity set of the approver. |
| createdDateTime | DateTimeOffset | Creation date and time of the response. |
| owners | approvalIdentitySet collection | The identity set of the principal who owns the approval item. |
| response | String | Approver response based on the response options. The default response options are "Approved" and "Rejected". The approval item creator can also define custom response options during approval item creation. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.approvalItemResponse",
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.approvalIdentitySet"
},
"comments": "String",
"response": "String",
"owners": [
{
"@odata.type": "microsoft.graph.approvalIdentitySet"
}
]
}