Difference between revisions of "API"
From PhotoVoltaic Logger new generation
m (→Data readout) |
m (→Data readout) |
||
Line 30: | Line 30: | ||
The model behind the channel provides a defined interface to query data. | The model behind the channel provides a defined interface to query data. | ||
+ | |||
+ | === Requested format === | ||
+ | |||
+ | The returned content type is detected by the requested file extension | ||
+ | * <tt>.json</tt> (or not set) → JSON | ||
+ | * <tt>.csv</tt> → Semicolon separated values | ||
+ | * <tt>.tsv</tt> → TAB separated values | ||
=== Parameters === | === Parameters === |
Revision as of 09:12, 28 February 2014
Abstract
An application programming interface (API) is a protocol intended to be used as an interface by software components to communicate with each other." -- Wikipedia:API
The API is implemented as a RESTful API, so it uses HTTP requests to store and read data. Thus, REST uses HTTP for all four CRUD (Create/Read/Update/Delete) operations.
PVLng supports all of them:
- PUT = create
- GET = read
- POST = update
- DELETE = delete
Data storage
For data storage we have two possibilities:
- Web front end for the master data, like channels and their relationships
- HTTP REST API for the operational channel data with HTTP PUT requests
The storage API accepts only one parameter data and routes it to the requested channel.
By default (load live data) system date and time will be used.
The model behind the channel represents the interface to the database.
Data readout
The data readout from the system must be done with HTTP GET requests.
The readout API analyzes the requests, identifies the channel and returns the extracted data.
The model behind the channel provides a defined interface to query data.
Requested format
The returned content type is detected by the requested file extension
- .json (or not set) → JSON
- .csv → Semicolon separated values
- .tsv → TAB separated values
Parameters
All parameters are optional.
Parameter name | Description | Format | default | Examples |
---|---|---|---|---|
start | Start timestamp for readout | string | 00:00 |
YYYY-mm-dd HH:ii:ss |
end | End timestamp for readout | string | 24:00 |
YYYY-mm-dd HH:ii:ss |
period | Example | string | <empty> |
[0-9.]+minutes |
attributes | Return channel attributes as 1st data set / line | bool[4] | 0 | Example |
full | Return all[5] data, not only timestamp and value | bool[4] | 0 | Example |
short | JSON: Return data as numeric indexed array, not as object with named keys | bool[4] | 0 | Example |
- ↑ 1.0 1.1 needs location defined in in config/config.php
- ↑ returns the last reading for selected start-end range, can be empty, if no data in range, also relevant for meter channels
- ↑ returns the last reading, ignores start-end range
- ↑ 4.0 4.1 4.2 All of (1|x|yes|on|true) are interpreted case-insensitive as TRUE.
- ↑ datetime, timestamp, data, min, max, count, timediff, consumption