cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
773
Views
5
Helpful
2
Replies

Forward all calls to destination

Ken S
Level 1
Level 1

Hello,

 

I am looking to forward all calls to a destination.  I came across axl-python-zeep-samples on GitHub and I am utilizing the sample axl_add_update_Line.py.  I already have a directory number that I want to test, but when I run, 

resp = service.updateLine( pattern = '5544', callForwardAll = { 'forwardToVoiceMail': 'true' } )

 It doesn't change on Call Manager.  

 

Any assistance would be appreciated.  

1 Accepted Solution

Accepted Solutions

Thank you!  I went a little different way and used this guy, https://www.youtube.com/channel/UCe4LsNQu0SdWuYpbLuLxowQ.  I may keep diving into this way though and keep you posted.  

View solution in original post

2 Replies 2

BjoernMartin
Spotlight
Spotlight

Hi.

That should help!

 

PATTERN = "1000"
PARTITION = "internal"
FWD_DESTINATION = "+15556666"
CSS = "CSS_FWD"


updateLine(**{'pattern': PATTERN,
                      'routePartitionName': PARTITION,
                      'callForwardBusyInt': {
                                                   'callingSearchSpaceName': {
                                                           '_value_1': CSS,
                                                    },
                                                   'destination': FWD_DESTINATION
                       },
              })

Thank you!  I went a little different way and used this guy, https://www.youtube.com/channel/UCe4LsNQu0SdWuYpbLuLxowQ.  I may keep diving into this way though and keep you posted.