user: invalidateAllRefreshTokens

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.

Invalidates all of the user's refresh tokens issued to applications (as well as session cookies in a user's browser), by resetting the refreshTokensValidFromDateTime user property to the current date-time. Typically, this operation is performed (by the user or an administrator) if the user has a lost or stolen device. This operation would prevent access to any of the organization's data accessed through applications on the device without the user first being required to sign in again. In fact, this operation would force the user to sign in again for all applications that they have previously consented to, independent of device.

For developers, if the application attempts to redeem a delegated access token for this user by using an invalidated refresh token, the application will get an error. If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint, which will force the user to sign in.

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) User.RevokeSessions.All Directory.ReadWrite.All, User.ReadWrite
Delegated (personal Microsoft account) User.ReadWrite Not available.
Application User.RevokeSessions.All Not available.

HTTP request

POST /me/invalidateAllRefreshTokens
POST /users/{id | userPrincipalName}/invalidateAllRefreshTokens

Request headers

Header Value
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

This operation has no request content.

Response

If successful, this method returns a 2xx series response code.

Example

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/me/invalidateAllRefreshTokens

Response

The following example shows the response.

HTTP/1.1 204 No Content