Google Apps Script and Zoho API

Google Apps Script and Zoho API

Hello, 
i want insert leads with Google Apps Script but i have one error and i don't find the mistake, could you help me ?

  1. function test() {
  2. var url = 'https://crm.zoho.com/crm/private/json/Leads/insertRecords';
  3. var xmlData = '<Leads><row no="1"><FL val="Company">Your Company</FL><FL val="First Name">Hannah</FL><FL val="Last Name">Smith</FL><FL val="Email">testing@testing.com</FL></row></Leads>';
  4. var options =
  5.   {
  6.      'authtoken' : 'XXXXXX',
  7.      'scope' : 'crmapi',
  8.      'newFormat' : '1',
  9.      'xmlData' : xmlData
  10.   }
  11. var result=UrlFetchApp.fetch(url,options);

  12. var output = Utilities.jsonParse(result.getContentText());
  13. Logger.log(output);
  14. }