Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
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 specific environment associated with a zone. The environment ID must be URL-encoded.
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) | Zone.Read.All | Zone.ReadWrite.All |
| Delegated (personal Microsoft account) | Not supported. | Not supported. |
| Application | Zone.Read.All | Zone.ReadWrite.All |
Important
In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. The following least privileged roles are supported for this operation.
- Security Administrator
- Global Reader
- Security Reader
HTTP request
GET /security/zones/{zoneId}/environments/{environmentId}
Optional query parameters
This method supports the $select OData query parameter to help 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.security.environment object in the response body.
Examples
Example 1: Get an AWS account environment
Request
The following example shows a request to get an AWS account environment.
GET https://graph.microsoft.com/beta/security/zones/05cfec937c214892a14448562ef4bf4a/environments/181994123251
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/security/zones/$metadata#environments/$entity",
"@odata.type": "#microsoft.graph.security.environment",
"kind": "awsAccount",
"id": "181994123251"
}
Example 2: Get an Azure subscription environment
The environment ID for Azure subscriptions uses the /subscriptions/{subscription-id} format and must be URL-encoded when used in the request URL.
| Format | Value |
|---|---|
| Original | /subscriptions/18d1c06d-520b-46d1-b309-be218fbc811e |
| URL-encoded | %2Fsubscriptions%2F18d1c06d-520b-46d1-b309-be218fbc811e |
Request
The following example shows a request to get an Azure subscription environment with a URL-encoded environment ID.
GET https://graph.microsoft.com/beta/security/zones/05cfec937c214892a14448562ef4bf4a/environments/%2Fsubscriptions%2F18d1c06d-520b-46d1-b309-be218fbc811e
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/security/zones/$metadata#environments/$entity",
"@odata.type": "#microsoft.graph.security.environment",
"kind": "azureSubscription",
"id": "/subscriptions/18d1c06d-520b-46d1-b309-be218fbc811e"
}