Arguments | Return value | REST (XML) example | REST (JSON) example | XML-RPC example
If calling by XML-RPC, note that this method takes a single struct as input, with the following keys:
IñtërnâtiônàlizætiønTrueIñtërnâtiônàlizætiønPOST /api/xml/peopleaggregator/echoPost HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Content-Length: 43
echoText=I%F1t%EBrn%E2ti%F4n%E0liz%E6ti%F8n
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: 216
<response>
<echoText>Iñtërnâtiônàlizætiøn</echoText>
<success>true</success>
</response>
POST /api/json/peopleaggregator/echoPost HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Content-Length: 43
echoText=I%F1t%EBrn%E2ti%F4n%E0liz%E6ti%F8n
HTTP/1.1 200 OK
Content-Type: application/x-javascript
Content-Length: 88
{"echoText": "I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n", "success": true}
POST /api/xmlrpc HTTP/1.1
Content-Type: text/xml
Content-Length: 723
<?xml version='1.0'?>
<methodCall>
<methodName>peopleaggregator.echoPost</methodName>
<params>
<param>
<value><struct>
<member>
<name>echoText</name>
<value><string>Iñtërnâtiônàlizætiøn</string></value>
</member>
</struct></value>
</param>
</params>
</methodCall>
HTTP/1.1 200 OK
Content-Type: text/xml
Content-Length: 924
<?xml version='1.0'?>
<methodResponse>
<params>
<param>
<value><struct>
<member>
<name>echoText</name>
<value><string>Iñtërnâtiônàlizætiøn</string></value>
</member>
<member>
<name>success</name>
<value><boolean>1</boolean></value>
</member>
</struct></value>
</param>
</params>
</methodResponse>