Hello, @gannon
1) the fields array, is it possible to include ALL fields without specifying them? Would we just leave the array empty, put "*", etc. My understanding is that your request would reload all records, but only update "Custom_Field__c", is that right?
>> Yes, in my example product would check changes only for 1 specific field. If you want to reload all, then request should not include "fields" parameter. Something like this:
2) the start_time and end_time, what relevance do they have here, are we only reloading records where sysmodstamp or lastmodifieddate are within this range? If we want to reload EVERYTHING, do we put say "start_time": "1990-01-01T00:00:00.000Z", "end_time": "2100-01-01T00:00:00.000Z" or leave these fields blank or something?
>> If dates are specified, then only records with createdDate within specified period will be verified. If you need to check everything, then skip dates parameters. See request example above.
regards.
1) the fields array, is it possible to include ALL fields without specifying them? Would we just leave the array empty, put "*", etc. My understanding is that your request would reload all records, but only update "Custom_Field__c", is that right?
>> Yes, in my example product would check changes only for 1 specific field. If you want to reload all, then request should not include "fields" parameter. Something like this:
Code:
{ "object": "Account"} >> If dates are specified, then only records with createdDate within specified period will be verified. If you need to check everything, then skip dates parameters. See request example above.
regards.
Statistics: Posted by anastasia.belyaeva — May 15, 2025 7:38 am




