Skip to content

Latest commit

 

History

History
150 lines (118 loc) · 4.61 KB

File metadata and controls

150 lines (118 loc) · 4.61 KB
title List requests
description Get a list of approvalItemRequest objects.
author asgautam1997
ms.localizationpriority medium
ms.subservice approvals
doc_type apiPageType
ms.date 09/10/2024

List requests

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of approvalItemRequest objects.

[!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}/requests

Optional query parameters

This method supports the $filter, $orderby, $count and $select OData query parameters 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 a collection of approvalItemRequest objects 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/requests

[!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#requests/$entity",
  "value":[
    {
      "id":"9d4c5640-1da7-4739-924f-d10b70c734c1",
      "owner":{
          "user":{
            "id":"39d1a7fb-5f54-4c89-b513-241683718c9b",
            "displayName":"Lilli Allik"
          }
      },
      "createdDateTime":"2022-04-13T00:17:49Z",
      "isReassigned": false
    },
    {
      "id":"9d4c5640-1da7-4739-924f-d10b70c734c2",
      "owner":{
          "group":{
            "id":"f2926053-5479-4bce-ad4c-8394ce51d6c5",
            "displayName":"Rene Magi"
          }
      },
      "createdDateTime":"2022-04-18T00:17:49Z",
      "isReassigned": false
    },
    {
      "id":"8d4c7640-1da7-4739-924f-d10b70c734c2",
      "owner":{
          "user":{
            "id":"f4d6b152-d3c6-4c27-9bc6-1cd5cdcb8473",
            "displayName":"Jana Pihlak"
          }
      },
      "createdDateTime":"2022-04-18T00:17:49Z",
      "isReassigned": true
    }
  ]
}