XML-RPC API - Examples

XML-RPC API - Python Examples
  * Digest Authentication for Trusted Numbers Manipulation and CLI Mapping See introduction to XMLAPI for details on Authentication: https://support....
Fri, 1 Dec, 2023 at 11:25 AM
XML-RPC API - Request
Request of createAccount <?xml version="1.0"?> <methodCall> <methodName>createAccount</methodName> <param...
Tue, 28 Mar, 2017 at 8:57 PM
XML-RPC API - OK Response
OK response <?xml version='1.0'?> <methodResponse>  <params>  <param>   <value>     <struct>   ...
Tue, 28 Mar, 2017 at 8:59 PM
XML-RPC API - Fault Response
Fault response <?xml version='1.0'?>   <methodResponse>    <fault>     <value>     <struct>      <m...
Tue, 28 Mar, 2017 at 9:00 PM
XML-RPC API - Sign-Up HTML Page (old version)
Sign-Up HTML Page <?php set_include_path(get_include_path() . PATH_SEPARATOR . '/home/ssp/sippy_web/lib'); /* you can find libraries in...
Tue, 28 Mar, 2017 at 9:00 PM
XML-RPC API - Sign-UP HTML Page (Full Example of the old version)
417 Line   1 <?php 2 set_include_path(get_include_path() . PATH_SEPARATOR . '/home/ssp/sippy_web/lib'); 3 4 /* you can find lib...
Tue, 28 Mar, 2017 at 9:00 PM
XML-RPC API - Sign-Up HTML Page (fresh version)
  Sign-Up HTML Page   <?php set_include_path(get_include_path() . PATH_SEPARATOR . '/home/ssp/sippy_web/lib'); /* you can find librarie...
Tue, 28 Mar, 2017 at 9:03 PM
XML-RPC API - Array example in XML-RPC
Referred documentation where arrays are mandatory: http://support.sippysoft.com/solution/articles/107508-packet-sniffer-scheduler <member><nam...
Tue, 28 Mar, 2017 at 9:03 PM
XML-RPC API - multicall example
See introduction to XMLAPI for details on Authentication: https://support.sippysoft.com/a/solutions/articles/106909 Starting from Sippy 4.4 it's po...
Thu, 7 Apr, 2022 at 4:55 AM