Hi Experts,
I'm attempting to ingest GPS data into ArcGIS Velocity using the HTTP Poller.
The GPS API endpoint supports retrieving historical data by specifying a timestamp in the URL:
https://gpsfeed/api/v1/locations/{logDateUTC}For example, sending a request to:
https://gpsfeed/api/v1/locations/2018-12-01T08:00:00Z
returns the vehicle locations recorded at that specific time.
I tried using a dynamic URL by passing the timestamp as a URL parameter, but since Velocity's HTTP Poller only supports key-value pairs, the request was sent as:
https://gpsfeed/api/v1/locations/?=2018-12-01T08:00:00Z
which is invalid.
Is there a way to configure the HTTP Poller to send a dynamic URL path (not just parameters) so that I can query historical data by timestamp?
My ultimate goal is to ingest GPS data from the past 2 years.
Any input would be greatly appreciated!