Skip to content

Latest commit

 

History

History
145 lines (108 loc) · 4.51 KB

File metadata and controls

145 lines (108 loc) · 4.51 KB
title Get approvalItem
description Read the properties and relationships of an approvalItem object.
author asgautam1997
ms.localizationpriority medium
ms.subservice approvals
doc_type apiPageType
ms.date 08/22/2024

Get approvalItem

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Read the properties and relationships of an approvalItem object.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

GET /solutions/approval/approvalItems/{approvalItemId}

Optional query parameters

This method supports the $select OData query parameter to help customize the response.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and an approvalItem object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/solutions/approval/approvalItems/d3a7405e-452a-47e0-9c35-9335225ba55d

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.context": "https://graph.microsoft.com/beta/approval/$metadata#approvalItem/$entity",
  "id": "d3a7405e-452a-47e0-9c35-9335225ba55d",
  "state":"completed",
  "viewPoint": {
      "roles": ["Approver"]
  },
  "owner": {
      "user": {
        "displayName": "Lilli Allik",
        "id": "f4d6b152-d3c6-4c27-9bc6-1cd5cdcb8473"
      }
  },
  "approvalType": "basicAwaitAll",
  "displayName":"Title of approval",
  "description":"Details of approval",
  "result":"Approve",
  "allowCancel":true,
  "allowEmailNotification": false,
  "createdDateTime":"2022-04-12T20:51:19Z",
  "completedDateTime":"2022-04-12T20:56:19Z",
  "expirationDate": "2099-04-12T23:59:59Z",
  "dueDate": "2029-04-12T23:59:59Z",
  "responsePrompts":[
      "Approve",
      "Reject"
  ]
}