What is the format of the xmlData parameter for the insertRecords and updateRecords methods?

What is the format of the xmlData parameter for the insertRecords and updateRecords methods?

Use the following XMLData parameters while using insertRecords and updateRecords methods:

insertRecords: https:// crm.zoho.com/crm/private/ xml / Leads /insertRecords?apikey= API Key &ticket= Ticket

  • ticket=xxxxxxxxxxxxxx
  • apikey=xxxxxxxxxxxxxx
  • xmlData= as given below
  1. <Leads>
    <row no="1">
    < FL val ="Lead Source">Web Download</FL>
    < FL val ="First Name">contacto 1</FL>
    < FL val ="Last Name">apellido</FL>
    < FL val ="Email"> testing@testing.com < /FL >
    < FL val ="Title">Manager</FL>
    < FL val ="Phone">1234567890</FL>
    < FL val ="Home Phone">0987654321</FL>
    < FL val ="Other Phone">1212211212</FL>
    < FL val ="Fax">02927272626</FL>
    < FL val ="Mobile">292827622</FL>
    </row>
    </Leads>

updateRecords: https://crm.zoho.com/crm/private/xml/Leads/updateRecords?apikey=API Key&ticket=Ticket

  • ticket=xxxxxxxxxxxxxxx
  • apikey=xxxxxxxxxxxxxxx
  • id = 1000000019001
  • xmlData= as given below
  1. <Leads>
    <row no="1">
    <FL val="Lead Source">Web Download</FL>
    <FL val="First Name">contacto 1</FL>
    <FL val="Last Name">apellido</FL>
    <FL val="Email">testing@testing.com</FL>
    <FL val="Title">Manager</FL>
    <FL val="Phone">1234567890</FL>
    <FL val="Home Phone">0987654321</FL>
    <FL val="Other Phone">1212211212</FL>
    <FL val="Fax">02927272626</FL>
    <FL val="Mobile">292827622</FL>
    </row>
    </Leads>


    • Related Articles

    • updateRecords

      Purpose You can use the updateRecords method to update or modify the records in Zoho Recruit. Note: Use the POST method to pass these parameters instead of GET method. Request URL XML Format To update single record into a module in a single API call: ...
    • API Methods

      Method Name Purpose getRecords To retrieve all users data specified in the API request getRecordById To retrieve individual records by record ID addRecords To insert records into the required Zoho Recruit module updateRecords To update or modify the ...
    • What is the format of the xmlData parameter to associate a task or event to CRM records?

      Use the following sample XML for relating an event with the account and contact respectively. Accounts <Events><row no="1"> < FL val =" SEMODULE "> Accounts </FL> < FL val ="SEID"> 22222222222 </FL> < FL val ="Subject">test</FL> < FL val ="Start ...
    • What is the format of the xmlData parameter to associate a task or event to CRM records?

      Use the following sample XML for relating an event with the account and contact respectively. Account <Events><row no="1"> <FL val="SEMODULE">Accounts</FL> <FL val="SEID">22222222222</FL> <FL val="Subject">test</FL> <FL val="Start ...
    • App assignment methods

      Apps can be assigned to users by four different methods: Assign to individual user: The admin can assign the app to every user individually. Assign to a group: The admin can assign the app to all the users in a group or department. Assign to ...