Skip to content

Latest commit

 

History

History
116 lines (86 loc) · 3.59 KB

File metadata and controls

116 lines (86 loc) · 3.59 KB
title Get waitingMember
description Read the properties and relationships of waitingMember object.
author patrick-starrin
ms.date 07/18/2025
ms.localizationpriority medium
ms.subservice cloud-licensing
doc_type apiPageType

Get waitingMember

Namespace: microsoft.graph.cloudLicensing

[!INCLUDE beta-disclaimer]

Read the properties and relationships of waitingMember 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

To get a waiting member for the signed-in user using delegated (/me) permissions:

GET /me/cloudLicensing/waitingMembers/{waitingMemberId}

To get a waiting member using either delegated or application permissions:

GET /admin/cloudLicensing/allotments/{allotmentId}/waitingMembers/{waitingMemberId}
GET /users/{userId}/cloudLicensing/waitingMembers/{waitingMemberId}

Optional query parameters

This method supports the $select and $expand OData query parameters to customize the response. For general information, see OData query parameters.

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 microsoft.graph.cloudLicensing.waitingMember object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/users/48fbdf70-9e09-40df-9dbe-17af483ab113/cloudLicensing/waitingMembers/f2c588fc-0a33-4f95-806b-58678112b1a9?$expand=assignedTo

[!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

{
  "value": {
    "@odata.type": "#microsoft.graph.cloudLicensing.waitingMember",
    "id": "49caea1b-ad15-64f1-70c5-5c5e3563d19c",
    "waitingSinceDateTime": "2024-11-22T17:11:10.6635939+00:00",
    "assignedTo": {
      "@odata.type": "#microsoft.graph.user",
      "id": "a6c034b8-621b-dee3-6abb-52cbce801fe9",
      "displayName": "Steve Fred",
      "userPrincipalName": "stevefred@contoso.com"
    }
  }
}