WebAPIToolkit.Web.Fetch - AlexanderStruck/WebAPIToolkit GitHub Wiki
Sends a FetchXML-request
- fetchXml(string): FetchXML
- callback (function): Callback-method if async
Result of the request if sync
var Contacts = WebAPIToolkit.Web.Fetch("<fetch mapping="logical" version="1.0">
<entity name="contact">
<attribute name="contactid" />
<attribute name="fullname" />
<filter type="or">
<condition attribute="statecode" operator="eq" value="0" />
</filter>
</entity>
</fetch>");