We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a84b37 commit cecac5eCopy full SHA for cecac5e
README.md
@@ -580,3 +580,21 @@ $zipStream = $billingReport->file();
580
$outFile = '/tmp/report.zip';
581
$billingReport->file(['stream' => true, 'sink' => $outFile]);
582
```
583
+
584
+## TN Options
585
586
+### Create New TN Options (Async request)
587
+```PHP
588
+$tnoptions = $account->tnoptions();
589
+$data = array(
590
+ "TnOptionGroups" => array(
591
+ "TnOptionGroup" => array(
592
+ "CallForward" => "<FORWARD_NUMBER>",
593
+ "TelephoneNumbers" => array(
594
+ "TelephoneNumber" => "<UPDATE_NUMBER>"
595
+ )
596
+ ),
597
598
+);
599
+$tnoptions->create($data);
600
+```
0 commit comments