Hi Marc,
While looking into how GetListItemChangesSinceToken works, I found that it is not setup to accept CAMLQuery as one of the input parameters.. In looking at the source, looks like (perhaps?) you did not setup the input parameters as you intended (according to the documentation page)
Here is the snippet of code from v2013.01:
Paul.
While looking into how GetListItemChangesSinceToken works, I found that it is not setup to accept CAMLQuery as one of the input parameters.. In looking at the source, looks like (perhaps?) you did not setup the input parameters as you intended (according to the documentation page)
Here is the snippet of code from v2013.01:
case "GetListItemChangesSinceToken":
addToPayload(opt, ["listName", "viewName", "query", "viewFields", "rowLimit", "queryOptions", "changeToken", "contains"]);
break;
The documentation states the input parameters to be (bold items are those that don't seem to be supported):- [webURL]
- listName
- viewName
- CAMLQuery
- CAMLViewFields
- CAMLRowLimit
- CAMLQueryOptions
- changeToken
-
contains
case "GetListItems":
addToPayload(opt, ["listName", "viewName", ["query", "CAMLQuery"], ["viewFields", "CAMLViewFields"], ["rowLimit", "CAMLRowLimit"], ["queryOptions", "CAMLQueryOptions"]]);
break;
(Plus the input parameters specific only to GetListItemChangeSinceToken).Paul.