Wiki Merge API RPC API API

Does the Confluence wiki RPC API provide a system or system.list method or some other method to programmatically list which methods are available through the XMLRPC interface?

Example:

auggy@stinkycheese ~ > xml-rpc-api2txt https://wiki.company.com/rpc/xmlrpc
An error occurred while trying to talk to the XML-RPC server:

Fault returned from XML RPC Server, fault code 0: java.lang.Exception: RPC handler object "system" not found and no default handler registered
+5
source share
1 answer

There is no reflection in the XML-RPC Confluence API that allows it to test itself and, unfortunately, report on available methods.

However, the XML-RPC API is almost identical to the SOAP API, and you can check / request the SOAP WSDL to see the methods it supports - for example: https://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v2?wsdl

API: https://developer.atlassian.com/display/CONFDEV/Confluence+XML-RPC+and+SOAP+APIs

+3

All Articles