mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
README: Document new device-data API action
This commit is contained in:
parent
39869afea0
commit
8bff9acbd8
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -106,6 +106,17 @@ https://example.com/path/to/api.php?action=device-data-bounds&device-id=18
|
||||||
https://example.com/path/to/api.php?action=device-data-bounds&device-id=11
|
https://example.com/path/to/api.php?action=device-data-bounds&device-id=11
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### device-data
|
||||||
|
> Gets data by device given a start and end time.
|
||||||
|
|
||||||
|
Parameter | Type | Meaning
|
||||||
|
--------------------|-----------|---------------------
|
||||||
|
`device-id` | int | The id of the device to get data for.
|
||||||
|
`reading-type` | string | The type of reading to obtain data for.
|
||||||
|
`start` | datetime | The starting datetime.
|
||||||
|
`end` | datetime | The ending datetime.
|
||||||
|
`average-seconds` | int | Optional. If specified, readings will be grouped into lumps of this many seconds and averaged. For example a value of 3600 (1 hour) will return 1 data point per hour, with the value of each point an average of all the readings for that hour.
|
||||||
|
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
- Readings are taken every 6 minutes as standard.
|
- Readings are taken every 6 minutes as standard.
|
||||||
|
|
Loading…
Reference in a new issue