You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Sends an asynchronous request to execute FetchXml to retrieve all records.
1710
+
*
1711
+
* @param {string} collection - An object that represents all possible options for a current request.
1712
+
* @param {string} fetchXml - FetchXML is a proprietary query language that provides capabilities to perform aggregation.
1713
+
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
1714
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
1715
+
* @param {string} [includeAnnotations] - Use this parameter to include annotations to a result. For example: * or Microsoft.Dynamics.CRM.fetchxmlpagingcookie
1716
+
* @param {string} [impersonateUserId] - A String representing the GUID value for the Dynamics 365 system user id. Impersonates the user.
@@ -1596,6 +1610,46 @@ function DynamicsWebApi(config) {
1596
1610
});
1597
1611
}
1598
1612
1613
+
/**
1614
+
* Sends an asynchronous request to execute FetchXml to retrieve records. Returns: DWA.Types.FetchXmlResponse
1615
+
*
1616
+
* @param {string} collection - An object that represents all possible options for a current request.
1617
+
* @param {string} fetchXml - FetchXML is a proprietary query language that provides capabilities to perform aggregation.
1618
+
* @param {string} [includeAnnotations] - Use this parameter to include annotations to a result. For example: * or Microsoft.Dynamics.CRM.fetchxmlpagingcookie
1619
+
* @param {number} [pageNumber] - Page number.
1620
+
* @param {string} [pagingCookie] - Paging cookie. For retrieving the first page, pagingCookie should be null.
1621
+
* @param {string} [impersonateUserId] - A String representing the GUID value for the Dynamics 365 system user id. Impersonates the user.
* Sends an asynchronous request to execute FetchXml to retrieve all records.
1642
+
*
1643
+
* @param {string} collection - An object that represents all possible options for a current request.
1644
+
* @param {string} fetchXml - FetchXML is a proprietary query language that provides capabilities to perform aggregation.
1645
+
* @param {string} [includeAnnotations] - Use this parameter to include annotations to a result. For example: * or Microsoft.Dynamics.CRM.fetchxmlpagingcookie
1646
+
* @param {string} [impersonateUserId] - A String representing the GUID value for the Dynamics 365 system user id. Impersonates the user.
0 commit comments