Class UpdatesAPI


  • public final class UpdatesAPI
    extends QueryResource
    Implementation of a connector for the remote API's Updates endpoint.


    Provides static access to all routes of this endpoint which may be used to fetch series that have been recently updated.

    • Method Detail

      • query

        public static com.fasterxml.jackson.databind.JsonNode query​(@Nonnull
                                                                    APIConnection con,
                                                                    @CheckForNull
                                                                    QueryParameters params)
                                                             throws APIException
        Returns an array of series that have changed in a maximum of one week blocks since the provided fromTime query parameter, as raw JSON. Note that the given query parameters must always contain a valid fromTime Epoch timestamp key.


        The user may specify an additional toTime query key to grab results for less than a week. Any timespan larger than a week will be reduced down to one week automatically.


        Corresponds to remote API route: [GET] /updated/query

        Parameters:
        con - Initialized connection to be used for API communication
        params - Object containing key/value pairs of query parameters. For a complete list of possible query parameters see the API documentation or use getQueryParams(con).
        Returns:
        JSON object containing a list of updated objects that match the given timeframe
        Throws:
        APIException - If an exception with the remote API occurs, e.g. authentication failure, IO error, resource not found, etc. or no records exist for the given timespan.
      • getQueryParams

        public static com.fasterxml.jackson.databind.JsonNode getQueryParams​(@Nonnull
                                                                             APIConnection con)
                                                                      throws APIException
        Returns a list of valid parameters for querying series which have been updated lately, as raw JSON. These keys are permitted to be used in QueryParameters objects when querying for recently updated series.


        Corresponds to remote API route: [GET] /updated/query/params

        Parameters:
        con - Initialized connection to be used for API communication
        Returns:
        JSON object containing a list of possible parameters which may be used to query for last updated series
        Throws:
        APIException - If an exception with the remote API occurs, e.g. authentication failure, IO error, resource not found, etc.