API: Insert Task returns error 4600 with EXAMPLE DATA
I trying to insert new task as described on this page:
https://www.zoho.com/crm/help/api/insertrecords.html#Tasks
Method: POST
URL:
https://crm.zoho.com/crm/private/xml/Tasks/insertRecords
DATA:
- authtoken=MyAuthToken
- &scope=crmapi
- &newFormat=1
- &xmlData=
- <Tasks>
- <row no="1">
- <FL val="Subject">Call</FL>
- <FL val="Due Date">2009-04-20</FL>
- <FL val="Status">Deferred</FL>
- <FL val="CONTACTID">2000000017017</FL>
- </row>
- </Tasks>
Server response:
- <?xml version="1.0" encoding="UTF-8" ?>
- <response uri="/crm/private/xml/Tasks/insertRecords"><error><code>4600</code><message>Unable to process your request. Please verify if the name
- and value is appropriate for the "xmlData" parameter.</message></error></response>
It is sample data from your documentation. What's wrong with this request?