Adding Shipping Address information into Account?

Adding Shipping Address information into Account?

Hello,

So, I'm trying to help a client insert information into their Zoho application and I've figured out how to insert a Lead and then convert that lead into Potentials, Accounts, and Contacts.

The problem, I am having, however, is that I can't figure out how/where to add "Shipping Address" information so that it shows up for a particular Account?  My client really wants to have shipping and billing address in there.

Based on this documentation:  https://www.zoho.com/crm/help/customization/standard-fields.html#Accounts It appears as though Shipping Address only exists for Accounts?  And not Leads or Potentials, or Contacts??

So, my thought is that I insert the lead and then convert it to the others and in the convertLead method, add the data in for  shipping address?  Is that how I would do it??  I have also tried adding the shipping address into the insert records for Lead method, but that didn't work either.

Here is the XML that I am sending for convertLead, all the fields are being populated correctly, even the Billing Address, but not Shipping Address?  Any thoughts on what I'm doing wrong??

  1. <Potentials>
  2.       <row no="1">
  3.             <option val="createPotential">true</option>
  4.             <option val="assignTo">Person's Name</option>
  5.             <option val="notifyLeadOwner">false</option>
  6.             <option val="notifyNewEntityOwner">true</option>
  7.       </row>
  8.       <row no="2">
  9.             <FL val="Potential Name">Potential's Name</FL>
  10.             <FL val="Potential Owner">Owner's Name</FL>
  11.             <FL val="Contact Name">Contact's Name</FL>
  12.             <FL val="Billing Street">Billing Address</FL>
  13.             <FL val="Billing City">Billing City</FL>
  14.             <FL val="Billing State">Billing State</FL>
  15.             <FL val="Billing Code">Billing Zip</FL>
  16.             <FL val="Shipping Street">Shipping Address</FL>
  17.             <FL val="Shipping City">Shipping City</FL>
  18.             <FL val="Shipping State">Shipping State</FL>
  19.             <FL val="Shipping Code">Shipping Zip</FL>
  20.             <FL val="Expected Revenue">Revenue $ Amount</FL>
  21.             <FL val="Closing Date">Closing Date</FL>
  22.             <FL val="Potential Stage">Closed Won</FL>
  23.             <FL val="Amount">Amount</FL>
  24.             <FL val="Service Number 1">Service number</FL>
  25.       </row>
  26. </Potentials>