Skip to main content
The XML-rpc can be used to interact with an XML-RPC webservice. The service is able to call certain methods that are registered on the server with or without arguments. The arguments are added in the request parameters.

Fields

Request URI

A required field. Describes the location where the service can be found.

Remote Procedure

A required field. The name of the method that needs to be executed on the target endpoint.

Request parameters

The payload the is send along with the request. These are the arguments of the called remote method.

HTTP Client

A required field. The http client that is used to communicate with the endpoint. The default is used as a standard but if extra configuration or authentication is required then a custom client can be configured.

Sample data

Input data
{
    "identifier": 1234
}
Request URI: https://example.org/xml-rpc Remote Procedure: GetProductById Request parameters:
{
    "identifier": "&{identifier}"
}
Result:
{
    "identifier": 1234,
    "name": "T-Shirt",
    "price": 19.95
}