Let the platform do the work

Fetching Records by Date Range

For some scenarios when getting data from the Sugar Market, formerly known as Salesfusion, RESTUL API you may want to query a certain entity to only fetch records that fall within a certain date range. 

An example of this would be wanting to fetch all contacts that have been updated in the month of October.

To do this we can append UTM paramters to our base route like the example below: 

Base Route: https://developer.salesfusion.com/api/2.0/contacts

UTM Parameters: ?date_field=updated_date&start_date=2018-20-01&end_date=2018-10-31 

Combined: https://developer.salesfusion.com/api/2.0/contacts?date_field=updated_date&start_date=2018-09-01T00:01&end_date=2018-09-30T23:59

Within the appended UTM Parameters the "date_field" section can be any date field presented on the given route such as "Created_date".