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
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 list of namedLocation objects.
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) | Policy.Read.All | Not available. |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Policy.Read.All | Not available. |
Important
In delegated scenarios with work or school accounts where the signed-in user is acting on another user, they 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.
- Global Secure Access Administrator - read standard properties
- Security Reader - read standard properties
- Security Administrator - read standard properties
- Global Reader
- Conditional Access Administrator
HTTP request
GET /identity/conditionalAccess/namedLocations
Optional query parameters
This method supports the $count
, $filter
, $orderby
, $select
, $skip
, and $top
OData query parameters 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 collection of namedLocation objects in the response body.
Examples
Example 1: List all namedLocations
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/conditionalAccess/namedLocations
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#conditionalAccess/namedLocations",
"value": [
{
"@odata.type": "#microsoft.graph.ipNamedLocation",
"id": "06e4ff15-ca6b-4843-9c34-3fdd1ce8f739",
"displayName": "IPv4 named ___location",
"modifiedDateTime": "2019-07-26T18:00:43.5796446Z",
"createdDateTime": "2018-06-22T11:56:12Z",
"isTrusted": false,
"ipRanges": [
{
"@odata.type": "#microsoft.graph.iPv4CidrRange",
"cidrAddress": "6.5.4.3/32"
},
{
"@odata.type": "#microsoft.graph.iPv4CidrRange",
"cidrAddress": "127.126.125.0/24"
}
]
},
{
"@odata.type": "#microsoft.graph.countryNamedLocation",
"id": "1b7f0916-7677-40d8-97a1-d606f4ed8fcf",
"displayName": "Country named ___location",
"modifiedDateTime": "2018-09-10T16:54:53.7238848Z",
"createdDateTime": "2018-09-10T16:54:53.7238848Z",
"countriesAndRegions": [
"US",
"CA"
],
"includeUnknownCountriesAndRegions": false
},
{
"@odata.type": "#microsoft.graph.ipNamedLocation",
"id": "05239353-9117-4d29-a6a1-89724cb61b8c",
"displayName": "Trusted IPv6 named ___location",
"modifiedDateTime": "2019-09-16T00:47:36.4967092Z",
"createdDateTime": "2019-09-15T21:53:34.5001162Z",
"isTrusted": true,
"ipRanges": [
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80e8:7:d92a:7695:fda1:9d62/48"
},
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80d8:7:d92a:7695:fda1:9d62/48"
}
]
}
]
}
Example 2: List all ipNamedLocations
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/conditionalAccess/namedLocations?$filter=isof('microsoft.graph.ipNamedLocation')
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#conditionalAccess/namedLocations",
"value": [
{
"@odata.type": "#microsoft.graph.ipNamedLocation",
"id": "06e4ff15-ca6b-4843-9c34-3fdd1ce8f739",
"displayName": "IPv4 named ___location",
"modifiedDateTime": "2019-07-26T18:00:43.5796446Z",
"createdDateTime": "2018-06-22T11:56:12Z",
"isTrusted": false,
"ipRanges": [
{
"@odata.type": "#microsoft.graph.iPv4CidrRange",
"cidrAddress": "6.5.4.3/32"
},
{
"@odata.type": "#microsoft.graph.iPv4CidrRange",
"cidrAddress": "127.126.125.0/24"
}
]
},
{
"@odata.type": "#microsoft.graph.ipNamedLocation",
"id": "05239353-9117-4d29-a6a1-89724cb61b8c",
"displayName": "Trusted IPv6 named ___location",
"modifiedDateTime": "2019-09-16T00:47:36.4967092Z",
"createdDateTime": "2019-09-15T21:53:34.5001162Z",
"isTrusted": true,
"ipRanges": [
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80e8:7:d92a:7695:fda1:9d62/48"
},
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80d8:7:d92a:7695:fda1:9d62/48"
}
]
}
]
}
Example 3: List all namedLocations created after a certain date
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/conditionalAccess/namedLocations?$filter=createdDateTime ge 2019-09-01T00:00:00Z
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#conditionalAccess/namedLocations",
"value": [
{
"@odata.type": "#microsoft.graph.ipNamedLocation",
"id": "05239353-9117-4d29-a6a1-89724cb61b8c",
"displayName": "Trusted IPv6 named ___location",
"modifiedDateTime": "2019-09-16T00:47:36.4967092Z",
"createdDateTime": "2019-09-15T21:53:34.5001162Z",
"isTrusted": true,
"ipRanges": [
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80e8:7:d92a:7695:fda1:9d62/48"
},
{
"@odata.type": "#microsoft.graph.iPv6CidrRange",
"cidrAddress": "2001:4898:80d8:7:d92a:7695:fda1:9d62/48"
}
]
}
]
}
Example 4: List all countryNamedLocations containing a certain country or region
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/conditionalAccess/namedLocations?$filter=microsoft.graph.countryNamedLocation/countriesAndRegions/any(c: c eq 'CA')
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#conditionalAccess/namedLocations",
"value": [
{
"@odata.type": "#microsoft.graph.countryNamedLocation",
"id": "1b7f0916-7677-40d8-97a1-d606f4ed8fcf",
"displayName": "Country named ___location",
"modifiedDateTime": "2018-09-10T16:54:53.7238848Z",
"createdDateTime": "2018-09-10T16:54:53.7238848Z",
"countriesAndRegions": [
"US",
"CA"
],
"includeUnknownCountriesAndRegions": false
}
]
}
Example 5: List all compliantNetworkNamedLocations
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identity/conditionalAccess/namedLocations?$filter=isof('microsoft.graph.compliantNetworkNamedLocation')
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#identity/conditionalAccess/namedLocations",
"@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET identity/conditionalAccess/namedLocations?$select=createdDateTime,displayName",
"value": [
{
"@odata.type": "#microsoft.graph.compliantNetworkNamedLocation",
"id": "3d46dbda-8382-466a-856d-eb00cbc6b910",
"displayName": "All Compliant Network locations",
"modifiedDateTime": "2024-05-18T00:15:27.662178Z",
"createdDateTime": "2023-02-13T06:09:11.6935736Z",
"compliantNetworkType": "allTenantCompliantNetworks",
"isTrusted": false,
"policyInfo": null
}
]
}