When specifying fields, they just seem to be ignored. For example below
var data = {
listName: "Primary Bookings",
fields: ["EventDate", "EndDate"," Title"]
}
spcalpro.getCalendarEvents(data).ready(function(data, obj) {
if (obj.error) console.error(obj.error);
console.table(data);
});
When specifying fields, they just seem to be ignored. For example below