Skip to main content
Turns your data into an XML-RPC request. XML-RPC is a simple protocol for calling a function on a remote system over the web. This formatter wraps your data as the arguments of the function you name and produces the XML the remote system expects, with a methodCall element at the top. If your data already contains a params section, that section is used as the call arguments; otherwise your whole payload is used as the arguments.

Fields

Sample data

FieldValue
Remote Proceduredstock.update
Input:
{
    "sku": "A1",
    "quantity": 5
}
Output:
<?xml version="1.0"?>
<methodCall><methodName>stock.update</methodName><params><sku>A1</sku><quantity>5</quantity></params></methodCall>