approvalItemResponse 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 response to an approval item request.

Methods

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.

Properties

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.

Relationships

None.

JSON representation

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