OnTime API: Filtering Data

Most endpoints within the OnTime API support the usage of URL parameters to filter or narrow the results returned from a successful query.
The following URL will retrieve all orders submitted by the customer Vesigo Studios that were submitted after midnight (Pacific Time) May 12, 2019:
REST API:    GET  /api/orders
/api/orders?customerName=Vesigo%20Studios&dateSubmittedMin=2019-05-11T05:00:00
The following URL will retrieve all locations within the city of Dallas, Texas:
REST API:    GET  /api/locations
/api/locations?city=Dallas&state=Texas
Parameters supplied within a URL that include any of the characters below must be percent-encoded to avoid incorrect data from being returned (see Section 2.1 & 2.2 of the RFC 3986 Standard).
Characters that must be percent-encoded in URL‘s include the following:
: / ?  #  [  ]  @ !  $  &  '  (  )  *  +  ,  ;  =