Get temporaryAccessPassAuthenticationMethodConfiguration
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.
Read the properties and relationships of a temporaryAccessPassAuthenticationMethodConfiguration object, which represents the Temporary Access Pass authentication method policy for the Azure Active Directory (Azure AD) tenant.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Policy.ReadWrite.AuthenticationMethod |
Delegated (personal Microsoft account) | Not supported. |
Application | Policy.ReadWrite.AuthenticationMethod |
For delegated scenarios, the administrator needs one of the following Azure AD roles:
- Global Reader
- Authentication Policy Administrator
- Global Administrator
HTTP request
GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/TemporaryAccessPass
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
The following is an example of 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#authenticationMethodConfigurations/$entity",
"@odata.type": "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration",
"id": "TemporaryAccessPass",
"state": "disabled",
"defaultLifetimeInMinutes": 60,
"defaultLength": 8,
"minimumLifetimeInMinutes": 60,
"maximumLifetimeInMinutes": 480,
"isUsableOnce": false,
"includeTargets": [
{
"targetType": "group",
"id": "all_users",
"isRegistrationRequired": false
}
]
}
Feedback
Submit and view feedback for