API Reference¶
Clients¶
API Client
API clients form the basis for making API requests. Typically, you will use the QuantAQAPIClient which will connect you directly to the QuantAQ website. If using an enterprise version of the QuantAQ API and server, you can build your own API client following the instructions in the Usage section.
|
A client for accessing the QuantAQ API. |
|
|
|
|
|
|
|
|
alias of |
API Endpoints¶
The following is an extensive list of all available API endpoints. Please check the Usage section for instructions on how to use them.
Users Endpoints
|
Return all (available) users. |
|
Return user with id = id. |
|
Update the record of a user with id = user_id |
Organizations Endpoints
Return a list of organizations accessible by the account. |
|
Return organizations with id = id. |
Networks Endpoints
|
Return a list of networks accessible by the account, in the context of the organization with id=organization_id. |
|
Return network with id=network_id in organization with id=organization_id. |
Devices Endpoints
|
Return all (available) devices. |
|
Return device with sn = sn. |
|
Update the record of a device with sn = sn |
|
Add a new device. |
|
Delete a device. |
Data Endpoints
|
Return all data for device with serial number sn. |
|
Return all data for a device with serial number <sn> on date <date>. |
|
Return a single data point. |
Logs Endpoints
|
Return a list of logs for device with serial number sn. |
|
Return a single log. |
|
Update a log record. |
|
Delete the log record. |
Cellular Logs Endpoints
|
Return a list of cellular logs for a device with serial number sn. |
|
Delete a cellular log record. |
Models Endpoints
|
Add a new calibration model for device with sn = serial number. |
|
Return the calibration models for device with sn = serial number. |
Utilities¶
Utils
|
Convert an array of dictionaries into a pd.DataFrame. |