approvalStage resource type

Namespace: microsoft.graph

Specifies a decision stage in an approval in entitlement management and PIM.

Methods

Method Return type Description
List approvalStages approvalStage collection List the approvalStage objects associated with an approval object in entitlement management and PIM.
Get approvalStage approvalStage Retrieve the properties of an approvalStage object in entitlement management and PIM.
Update approvalStage None Apply approve or deny decision on an approvalStage object in entitlement management and PIM.

Properties

Property Type Description
assignedToMe Boolean Indicates whether the stage is assigned to the calling user to review. Read-only.
displayName String The label provided by the policy creator to identify an approval stage. Read-only.
id String The identifier of the stage associated with an approval object. Read-only.
justification String The justification associated with the approval stage decision.
reviewResult String The result of this approval record. Possible values include: NotReviewed, Approved, Denied.
reviewedBy identity The identifier of the reviewer. 00000000-0000-0000-0000-000000000000 if the assigned reviewer hasn't reviewed. Read-only.
reviewedDateTime DateTimeOffset The date and time when a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
status String The stage status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.approvalStage",
  "assignedToMe": "Boolean",
  "displayName": "String",
  "id": "String (identifier)",
  "justification": "String",
  "reviewedBy": {
    "@odata.type": "microsoft.graph.identity"
  },
  "reviewedDateTime": "String (timestamp)",
  "reviewResult": "String",
  "status": "String"
}