Difference between revisions of "Freeside:3:Documentation:Developer/FS/ClientAPI XMLRPC"
From Freeside
m (Edit via perl MediaWiki framework (1.13)) |
m (Edit via perl MediaWiki framework (1.13)) |
||
Line 1: | Line 1: | ||
+ | ==NAME== | ||
+ | FS::ClientAPI_XMLRPC - Freeside XMLRPC accessible self-service API, on the backend | ||
+ | ==SYNOPSIS== | ||
+ | This module implements the self-service API offered by xmlrpc.cgi and friends, but on a backend machine. | ||
+ | |||
+ | ==DESCRIPTION== | ||
+ | Use this API to implement your own client "self-service" module vi XMLRPC. | ||
+ | |||
+ | Each routine described in [[Freeside:3:Documentation:Developer/FS/SelfService|FS::SelfService]] is available vi XMLRPC as the method FS.SelfService.XMLRPC.'''method'''. All values are passed to the selfservice-server in a struct of strings. The return values are in a struct as strings, arrays, or structs as appropriate for the values described in [[Freeside:3:Documentation:Developer/FS/SelfService|FS::SelfService]]. | ||
+ | |||
+ | ==BUGS== | ||
+ | ==SEE ALSO== | ||
+ | [[Freeside:3:Documentation:Developer/FS/SelfService/XMLRPC|FS::SelfService::XMLRPC]], [[Freeside:3:Documentation:Developer/FS/SelfService|FS::SelfService]] |
Latest revision as of 05:30, 10 February 2015
Contents
NAME
FS::ClientAPI_XMLRPC - Freeside XMLRPC accessible self-service API, on the backend
SYNOPSIS
This module implements the self-service API offered by xmlrpc.cgi and friends, but on a backend machine.
DESCRIPTION
Use this API to implement your own client "self-service" module vi XMLRPC.
Each routine described in FS::SelfService is available vi XMLRPC as the method FS.SelfService.XMLRPC.method. All values are passed to the selfservice-server in a struct of strings. The return values are in a struct as strings, arrays, or structs as appropriate for the values described in FS::SelfService.