I have passe following XMLRPC request.
It does create article but only title is saved and not body.

<?xml version='1.0' ?>
<methodCall>
  <methodName>node.create</methodName>
  <params>
    <param>
      <value>
        <struct>
          <member>
            <name>type</name>
            <value>
              <string>article</string>
            </value>
          </member>
          <member>
            <name>body</name>
            <value>
              <string>Create body input</string>
            </value>
          </member>
          <member>
            <name>title</name>
            <value>
              <string>Test title</string>
            </value>
          </member>
        </struct>
      </value>
    </param>
  </params>
</methodCall>

Comments

marcingy’s picture

Priority: Major » Normal
Status: Active » Closed (fixed)

See http://drupal.org/node/1354202 for details on how to determine the correct data structure.

isagarjadhav’s picture

problem solved. thanks a ton :)

digitalfrontiersmedia’s picture

For those searching but needing a more spelled out answer, see http://drupal.org/node/1304802#comment-5578926

digitalfrontiersmedia’s picture

Issue summary: View changes

description changed