Skip to content

TimeSeries API

jeremyosterhoudt edited this page Jan 30, 2018 · 5 revisions

Overview

The Predix SDK for iOS Time Series API allows your application to access Time Series data from the Time Series Service available on Predix.io. The SDK provides a simple native Swift API that converts Time Series JSON requests and responses into Swift models that make it easier to use, display, and manipulate Time Series data from Swift.

Features

  • Predix SDK for iOS handles authentication with Time Series, you simply need to provide the UAA endpoint and Zone ID.
  • Request data using native Swift objects.
  • Response data is represented with native Swift objects making it easier to filter, display, and find data that is most critical to your application.

FAQ

  • How do I get the SDK to work with my Time Series Service protected by UAA?

    • The SDK will use the bearer token obtained from the AuthenticationManager to communicate with the Time Series Service.
  • How do I get the SDK and Time Series Service to work with a user token (Password Grant type)?

    • You need to add the Time Series Service .query and .user zones to client authorities and the group for the user(s) you want to have access the Time Series Service Service via the SDK.

    • Your UAA client and user(s) group will look something like the images below.

    • Client authorities

    • User group

    • Please consult the UAA and Time Series service documentation for more details.

Next Steps