Handsets are assigned to one Send and to one or more Receive accounts 
Via auto-provisioning (also possible via web-interface) you can: - Per SIP account configure which handsets will ring on incoming calls (Receive) or use it for outgoing calls (Send)
or - Per handset configure which SIP account it should ring (Receive) or use for outgoing call (Send)
Assign handset(s) to an SIP account: For the provisioning parameter values we use: - Handset internal number: 11 - 99
- SIP accounts: trunk_0000 - trunk 0007
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
<nvm>
<oper name="assign_handsets_to_trunk" value="trunk_0000">
<!-- handsets with internal number 11 and 14 will ring on incoming calls for SIP account 1 (trunk_0000) -->
<param name="receive" value="11, 14"/>
<!-- handset with internal number 11 will use the SIP account 1 (trunk_0000) for outgoing calls -->
<param name="send" value="11"/>
</oper>
</nvm>
</provisioning> |
Send settings example Example for Handset with IPUI 02b6ec8aa5 to use SIP account "ID = trunk_0000" for outgoing calls <?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
<nvm>
<oper name="assign_hs_to_SIP account">
<param name="Ipui" value="02b6ec8aa5"/>
<param name="TrunkId" value="trunk_0000"/>
<param name="Type" value="1"/>
</oper>
</nvm>
</provisioning> |
Example for Handset with IPUI 02b6ec8aa5 to remove the outgoing calls SIP account <?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
<nvm>
<oper name="unassign_hs_from_trunk">
<param name="Ipui" value="02b6ec8aa5"/>
<param name="Type" value="1"/>
</oper>
</nvm>
</provisioning> |
|