02-14-2022 05:33 AM
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.
Solved! Go to Solution.
02-14-2022 07:59 AM
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.
02-14-2022 06:47 AM
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
},
})
02-14-2022 07:59 AM
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.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide