Skip to content

Latest commit

 

History

History
133 lines (101 loc) · 4.33 KB

File metadata and controls

133 lines (101 loc) · 4.33 KB
title Get approvalItemResponse
description Read the properties and relationships of an approvalItemResponse object.
author asgautam1997
ms.localizationpriority medium
ms.subservice approvals
doc_type apiPageType
ms.date 09/10/2024

Get approvalItemResponse

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Read the properties and relationships of an approvalItemResponse 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}/responses/{approvalItemResponseId}

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 approvalItemResponse object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/solutions/approval/approvalItems/7d096f68-c4fe-4967-99dc-df0248c33a77/responses/9d4c5640-1da7-4739-924f-d10b70c734c1

[!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/$metadata#solutions/approval/approvalItems('7d096f68-c4fe-4967-99dc-df0248c33a77')/responses/$entity",
  "id":"9d4c5640-1da7-4739-924f-d10b70c734c1",
  "response":"Approve",
  "comments":"Approve this request",
  "createdBy":{
      "user": {
          "displayName": "Jana Pihlak",
          "id": "f4d6b152-d3c6-4c27-9bc6-1cd5cdcb8473"
        }
  },
  "createdDateTime":"2022-04-12T20:51:19Z",
  "onBehalfOf":[
    {
        "user":{
          "id":"39d1a7fb-5f54-4c89-b513-241683718c9b",
          "displayName":"Lilli Allik"
        }
    }
  ]
}