Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
CUCM v14 AXL response via Zeep v3.4.0 has me scratching my head.Request: resp = service.getLineGroup(searchCriteria={'name': 'Billing'}, returnedTags={'distributionAlgorithm': ''})Response:Exception has occurred: TypeE...
CUCM v14 AXL response via Zeep v3.4.0 has me scratching my head.Request: resp = service.getLineGroup(searchCriteria={'name': 'Billing'}, returnedTags={'distributionAlgorithm': ''})Response:Exception has occurred: TypeE...
Thanks for that insight Alex.I was able to figure it out. Those would need to be keyword arguments and formatted as:resp = service.getLineGroup(name = 'Billing')
Ah, ok. So I tried sequence instead of search criteria, but get a different error: Exception has occurred: Fault No uuid or name element found I'm not sure how I can structure the call to dig down into that choice element for a proper request ...