Get deleted item (directory object)
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.
Retrieve the properties of a recently deleted administrative unit, application, externalUserProfile, group, pendingExternalUserProfile, servicePrincipal, or user objects from deleted items.
Note: Deleted security groups are deleted permanently and can't be retrieved through this API.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
The following table shows the least privileged permission or permissions required to call this API on each supported resource type. Follow best practices to request least privileged permissions. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Supported resource | Delegated (work or school account) | Delegated (personal Microsoft account) | Application |
---|---|---|---|
administrativeUnit | AdministrativeUnit.Read.All | Not supported. | AdministrativeUnit.Read.All |
application | Application.Read.All | Not supported. | Application.Read.All |
externalUserProfile | ExternalUserProfile.Read.All | Not supported | ExternalUserProfile.Read.All |
group | Group.Read.All | Not supported. | Group.Read.All |
pendingExternalUserProfile | PendingExternalUserProfile.Read.All | Not supported | PendingExternalUserProfile.Read.All |
servicePrincipal | Application.Read.All | Not supported. | Application.Read.All |
user | User.Read.All | Not supported. | User.Read.All |
HTTP request
GET /directory/deleteditems/{object-id}
Optional query parameters
This method supports the OData query parameters to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a directoryObject object in the response body.
Example
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/directory/deleteditems/46cc6179-19d0-473e-97ad-6ff84347bbbb
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#directoryObjects/$entity",
"id":"46cc6179-19d0-473e-97ad-6ff84347bbbb",
"displayName":"SampleGroup",
"groupTypes":["Unified"],
"mail":"example@contoso.com",
"mailEnabled":true,
"mailNickname":"Example",
"securityEnabled":false,
"visibility":"Public"
}