| title | Get environment |
|---|---|
| description | Get a specific environment associated with a zone. The environment ID must be URL-encoded. |
| author | Yarinle4 |
| ms.date | 11/26/2025 |
| ms.localizationpriority | medium |
| ms.subservice | security |
| doc_type | apiPageType |
Namespace: microsoft.graph.security
[!INCLUDE beta-disclaimer]
Get a specific environment associated with a zone. The environment ID must be URL-encoded.
[!INCLUDE national-cloud-support]
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.
[!INCLUDE permissions-table]
[!INCLUDE rbac-security-zone-apis-read]
GET /security/zones/{zoneId}/environments/{environmentId}This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a microsoft.graph.security.environment object in the response body.
The following example shows a request to get an AWS account environment.
GET https://graph.microsoft.com/beta/security/zones/05cfec937c214892a14448562ef4bf4a/environments/181994123251[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
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"
}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 |
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-be218fbc811eThe 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"
}