Hi,
How can I create an appointment with requiredattendees ? (with javascript)
I try to do following code, but it doesn't work.
"<requiredattendees type='account'>"+AccountGUID+"</requiredattendees>"+
How can I do this?
..........
var authenticationHeader = GenerateAuthenticationHeader();
var AppXml = "<?xml version='1.0' encoding='utf-8'?>" +
"<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'"+
" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'"+
" xmlns:xsd='http://www.w3.org/2001/XMLSchema'>"+
authenticationHeader+
"<soap:Body>"+
"<Create xmlns='http://schemas.microsoft.com/crm/2007/WebServices'>"+
"<entity xsi:type='appointment'>"+
"<subject>"+Title+"</subject>"+
"<requiredattendees type='account'>"+AccountGUID+"</requiredattendees>"+
.....
MS CRM