List requests
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Get a list of the delegatedAdminRelationshipRequest objects and their properties.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
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.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | DelegatedAdminRelationship.Read.All | DelegatedAdminRelationship.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | DelegatedAdminRelationship.Read.All | DelegatedAdminRelationship.ReadWrite.All |
HTTP request
GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationshipId}/requests
Optional query parameters
This method supports the $expand
, $select
, $filter
, $top
, $count
, and $skipToken
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 delegatedAdminRelationshipRequest objects in the response body.
Each delegatedAdminRelationshipRequest object contains an @odata.etag property as per RFC2616.
Examples
Request
GET https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/5d027261-d21f-4aa9-b7db-7fa1f56fb163-8777b240-c6f0-4469-9e98-a3205431b836/requests
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/tenantRelationships/$metadata#requests",
"value": [
{
"@odata.type": "#microsoft.graph.delegatedAdminRelationshipRequest",
"@odata.etag": "W/\"JyIxODAwZTY4My0wMDAwLTAyMDAtMDAwMC02MTU0OWFmMDAwMDAiJw==\"",
"id": "ae5a6b9e-6355-43dd-b708-48486b69c3ff",
"action": "lockForApproval",
"status": "succeeded",
"createdDateTime": "2022-02-01T06:14:55.5398865Z",
"lastModifiedDateTime": "2022-02-01T06:14:55.5398865Z"
},
{
"@odata.type": "#microsoft.graph.delegatedAdminRelationshipRequest",
"@odata.etag": "W/\"JyIxODAwZTY4My0wMDAwLTAyMDAtMDAwMC02MTU0OWFmMDAwMDAiJw==\"",
"id": "8a1b6676-5c12-47ba-8d3a-1d38387b0909",
"action": "terminate",
"status": "running",
"createdDateTime": "2022-03-02T06:11:55.5398865Z",
"lastModifiedDateTime": "2022-03-02T06:11:55.5398865Z"
}
]
}