getUpdatedShows method

Future<List<UpdatedShow>> getUpdatedShows(
  1. String startDate, {
  2. bool extendedFull = false,
  3. RequestPagination? pagination,
})

Returns all shows updated since the specified UTC date and time.

We recommended storing the X-Start-Date header you can be efficient using this method moving forward. By default, 10 results are returned. You can send a limit to get up to 100 results per page.

Important! The start_date is only accurate to the hour, for caching purposes. Please drop the minutes and seconds from your timestamp to help optimize our cached data. For example, use 2021-07-17T12:00:00Z and not 2021-07-17T12:23:34Z.

Note: The start_date can only be a maximum of 30 days in the past.

startDate - Updated since this date and time.

📄 Pagination ✨ Extended Info

Implementation

Future<List<UpdatedShow>> getUpdatedShows(String startDate,
    {bool extendedFull = false, RequestPagination? pagination}) async {
  return await _manager._getList("shows/updates/startDate",
      extendedFull: extendedFull, pagination: pagination);
}