Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ms.reviewer: intelligentaccesspm
ms.localizationpriority: medium
ms.subservice: "entra-sign-in"
doc_type: apiPageType
ms.date: 04/05/2024
ms.date: 06/15/2026
---

# Get voiceAuthenticationMethodConfiguration
Expand Down Expand Up @@ -119,7 +119,8 @@ Content-Type: application/json
}
],
"excludeTargets": [],
"isOfficePhoneAllowed": "true"
"isOfficePhoneAllowed": "true",
"callerIdNumber": null
Comment on lines +122 to +123
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ms.reviewer: intelligentaccesspm
ms.localizationpriority: medium
ms.subservice: "entra-sign-in"
doc_type: apiPageType
ms.date: 04/05/2024
ms.date: 06/15/2026
---

# Update voiceAuthenticationMethodConfiguration
Expand Down Expand Up @@ -47,6 +47,7 @@ PATCH /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/v

|Property|Type|Description|
|:---|:---|:---|
|callerIdNumber|String|The caller ID phone number to display when voice call authentication method calls are placed. Only US phone numbers are supported. The value should be a 10-digit US number (for example, `2065551234`) or an 11-digit number with the US country code prefix `1` (for example, `12065551234`). Non-numeric characters are ignored. If the value isn't a valid US phone number, the system default caller ID is used.|
|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|isOfficePhoneAllowed|Boolean|`true` if users can register office phones, otherwise, `false`.|
|state|authenticationMethodState|The possible values are: `enabled`, `disabled`.|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ms.localizationpriority: medium
ms.subservice: "entra-sign-in"
doc_type: resourcePageType
toc.title: Voice
ms.date: 07/22/2024
ms.date: 06/15/2026
---

# voiceAuthenticationMethodConfiguration resource type
Expand All @@ -30,6 +30,7 @@ Inherits from [authenticationMethodConfiguration](../resources/authenticationmet
## Properties
|Property|Type|Description|
|:---|:---|:---|
|callerIdNumber|String|The caller ID phone number to display when voice call authentication method calls are placed. Only US phone numbers are supported. The value should be a 10-digit US number (for example, `2065551234`) or an 11-digit number with the US country code prefix `1` (for example, `12065551234`). Non-numeric characters are ignored. If the value isn't a valid US phone number, the system default caller ID is used.|
|excludeTargets|[excludeTarget](../resources/excludetarget.md) collection|Groups of users that are excluded from the policy.|
|id|String|The authentication method policy identifier.|
|isOfficePhoneAllowed|Boolean|`true` if users can register office phones, otherwise, `false`. |
Expand All @@ -55,6 +56,7 @@ The following is a JSON representation of the resource.
"@odata.type": "#microsoft.graph.voiceAuthenticationMethodConfiguration",
"id": "String (identifier)",
"state": "String",
"callerIdNumber": "String",
"excludeTargets": [
{
"@odata.type": "microsoft.graph.excludeTarget"
Expand Down
Loading