XML-RPC API - Examples
							    Note: The Python examples below now use requests instead of httplib2. By using requests.post() with the necessary authentication, headers, and SSL option...
						  
						
						Fri, 7 Feb, 2025 at  9:23 AM
					
							     
 Request of createAccount
 
 
 <?xml version="1.0"?>
<methodCall>
<methodName>createAccount</methodName>
<param...
						  
						
						Tue, 28 Mar, 2017 at  8:57 PM
					
							     
 OK response
 
 
 <?xml version='1.0'?>
<methodResponse> 
<params> 
<param>
  <value>
    <struct> 
 ...
						  
						
						Tue, 28 Mar, 2017 at  8:59 PM
					
							     
 Fault response
 
 
 <?xml version='1.0'?> 
 <methodResponse> 
  <fault> 
   <value>
    <struct>
     <m...
						  
						
						Tue, 28 Mar, 2017 at  9:00 PM
					
							    
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
					
							    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
					
							 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
					
							 See introduction to XMLAPI for details on Authentication:  https://support.sippysoft.com/a/solutions/articles/106909     Starting from Sippy 4.4 it's po...
						  
						
						Fri, 7 Feb, 2025 at  9:23 AM
					
							   * Digest Authentication for Trusted Numbers Manipulation and CLI Mapping  See introduction to XMLAPI for details on Authentication:  https://support.sippy...
						  
						
						Tue, 18 Jun, 2024 at  2:18 PM