Hi Terren,
The APIs are defined in the wsdl file.
Here are several lines of python code for your reference:
import deep
def service (self, xmc_ip):[/code] wsdl_url = 'https://' + xmc_ip +':8443/axis/services/NetSightDeviceWebService?wsdl'
client = zeep.CachingClient (wsdl=wsdl_url, transport=self.transport, strict=False)
return client.bind ('NetSightDeviceWebService', "NetSightDeviceWebServiceSOAP11port_https1")
[/code]