Skip to content

Commit 0279e71

Browse files
committed
update readme to reflect changes
1 parent c146c98 commit 0279e71

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,21 @@ numbers.SipPeer.get(function(err,sipPeer){
704704
});
705705
```
706706

707+
### SipPeer link Application Methods
708+
709+
```Javascript
710+
numbers.SipPeer.get(function(err,sipPeer){
711+
// List applications associated with this peer
712+
sipPeer.listApplications(callback);
713+
714+
// Associate an application with this peer
715+
sipPeer.editApplications({httpMessagingV2AppId: [appId]}, callback);
716+
717+
// Dissociate all applications with this peer
718+
sipPeer.removeApplications(callback);
719+
```
720+
721+
707722
## Sites
708723
709724
### Create A Site

0 commit comments

Comments
 (0)