Skip to content

Commit 83b11af

Browse files
authored
Merge pull request #12837 from pavellatif/main
Update New-CsOnlineTelephoneNumberReleaseOrder.md
2 parents ce193be + cd006a2 commit 83b11af

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

teams/teams-ps/teams/New-CsOnlineTelephoneNumberReleaseOrder.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ schema: 2.0.0
1414
# New-CsOnlineTelephoneNumberReleaseOrder
1515

1616
## SYNOPSIS
17-
This cmdlet creates a request to release Direct Routing telephone numbers from Microsoft Teams telephone number management inventory.
17+
This cmdlet creates a request to release telephone numbers from Microsoft Teams telephone number management inventory.
1818

1919
## SYNTAX
2020

@@ -23,7 +23,7 @@ New-CsOnlineTelephoneNumberReleaseOrder [-TelephoneNumber <String>] [-StartingNu
2323
```
2424

2525
## DESCRIPTION
26-
This cmdlet releases existing Direct Routing telephone numbers from Microsoft Teams telephone number management inventory. Once released the phone numbers will not be visible in Teams PowerShell as acquired Direct Routing phone numbers. A maximum of 1,000 phone numbers can be released at a time. If more than 1,000 numbers need to be released, the requests should be divided into multiple increments of up to 1,000 numbers.
26+
This cmdlet releases existing telephone numbers from Microsoft Teams telephone number management inventory. Once released the phone numbers will not be visible in Teams PowerShell as acquired telephone numbers. A maximum of 1,000 phone numbers can be released at a time. If more than 1,000 numbers need to be released, the requests should be divided into multiple increments of up to 1,000 numbers.
2727

2828
The cmdlet is an asynchronous operation and will return an OrderId as output. You can use the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to check the status of the OrderId, including any error or warning messages that might result from the operation: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
2929

@@ -35,23 +35,23 @@ PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -TelephoneNumber "+123456789"
3535
cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13
3636
```
3737

38-
In this example, a new Direct Routing telephone number "+123456789" is being released from Microsoft Teams telephone number management inventory. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
38+
In this example, a telephone number "+123456789" is being released from Microsoft Teams telephone number management inventory. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
3939

4040
### Example 2
4141
```powershell
4242
PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -TelephoneNumber "+123456789,+134567890,+145678901"
4343
cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13
4444
```
4545

46-
In this example, a list of Direct Routing telephone numbers are being released from Microsoft Teams telephone number management. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
46+
In this example, a list of telephone numbers are being released from Microsoft Teams telephone number management. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
4747

4848
### Example 3
4949
```powershell
5050
PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -StartingNumber "+12000000" -EndingNumber "+12000009"
5151
cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13
5252
```
5353

54-
In this example, a range of Direct Routing telephone numbers from "+12000000" to "+12000009" are being released from Microsoft Teams telephone number management. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
54+
In this example, a range of telephone numbers from "+12000000" to "+12000009" are being released from Microsoft Teams telephone number management. The output of the cmdlet is the OrderId that can be used with the [Get-CsOnlineTelephoneNumberOrder](https://learn.microsoft.com/powershell/module/teams/get-csonlinetelephonenumberorder) cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
5555

5656
### Example 4
5757
```powershell
@@ -60,12 +60,12 @@ PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -FileContent $drlist
6060
cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13
6161
```
6262

63-
In this example, the content of a file with a list of Direct Routing telephone numbers are being released via file upload. The file should be in Comma Separated Values (CSV) file format and should only contain the list of DR numbers to be released. The New-CsOnlineTelephoneNumberReleaseOrder cmdlet is only used to pass the content. To read the output of this cmdlet and retrieve the status of your order, you can use OrderId with the [Get-CsOnlineTelephoneNumberOrder](./get-csonlinetelephonenumberorder.md) cmdlet : `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
63+
In this example, the content of a file with a list of telephone numbers are being released via file upload. The file should be in Comma Separated Values (CSV) file format and should only contain the list of telephone numbers to be released. The New-CsOnlineTelephoneNumberReleaseOrder cmdlet is only used to pass the content. To read the output of this cmdlet and retrieve the status of your order, you can use OrderId with the [Get-CsOnlineTelephoneNumberOrder](./get-csonlinetelephonenumberorder.md) cmdlet : `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`.
6464

6565
## PARAMETERS
6666

6767
### -TelephoneNumber
68-
This is the Direct Routing telephone number you wish to release from Microsoft Teams telephone number management inventory.
68+
This is the telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory.
6969

7070
```yaml
7171
Type: String
@@ -80,7 +80,7 @@ Accept wildcard characters: False
8080
```
8181
8282
### -StartingNumber
83-
This is the starting number of a range of Direct Routing telephone number you wish to release from Microsoft Teams telephone number management inventory.
83+
This is the starting number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory.
8484
8585
```yaml
8686
Type: String
@@ -95,7 +95,7 @@ Accept wildcard characters: False
9595
```
9696
9797
### -EndingNumber
98-
This is the ending number of a range of Direct Routing telephone number you wish to release from Microsoft Teams telephone number management inventory.
98+
This is the ending number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory.
9999
100100
```yaml
101101
Type: String
@@ -110,7 +110,7 @@ Accept wildcard characters: False
110110
```
111111
112112
### -FileContent
113-
This is the content of a .csv file that includes the Direct Routing telephone numbers to be released from the Microsoft Teams telephone number management inventory. This parameter can be used to release up to 1,000 numbers at a time.
113+
This is the content of a .csv file that includes the telephone numbers to be released from the Microsoft Teams telephone number management inventory. This parameter can be used to release up to 1,000 numbers at a time.
114114
115115
```yaml
116116
Type: Byte[]

0 commit comments

Comments
 (0)