The NOWATCH API
/
Delete users measurements
NOWATCH API (0.9.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.api.nowatch.tech/_mock/apis/
https://docs.api.nowatch.tech/nowatch/
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/measurement
https://docs.api.nowatch.tech/nowatch/v1/measurement
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.api.nowatch.tech/_mock/apis/v1/measurement?type=HEART_BEAT&sort=ASC&start_day=string&end_day=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'shared-user: string'Bodyapplication/jsonArray []
Example: "{ \"SECONDS_AFTER_MIDNIGHT\": [VALUE, QUALITY (0-4)], \"SECONDS_AFTER_MIDNIGHT\": [VALUE, QUALITY (0-4)], ... }"
Enum"HEART_BEAT""HEART_RATE""HEART_RATE_GRAPH""RESPIRATION_RATE""RESTING_HEART_RATE""TEMPERATURE""ACTIVITY_COUNT""ACTIVITY_TYPE""ACTIVITY_CADENCE""MOTION_GRAPH"
Response
application/json
[ { "values": "{ \"SECONDS_AFTER_MIDNIGHT\": [VALUE, QUALITY (0-4)], \"SECONDS_AFTER_MIDNIGHT\": [VALUE, QUALITY (0-4)], ... }", "count": 10, "type": "HEART_BEAT", "day": "2025-08-09T00:00:00.000Z", "created": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ]
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/measurement
https://docs.api.nowatch.tech/nowatch/v1/measurement
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.api.nowatch.tech/_mock/apis/v1/measurement?type=HEART_BEAT&start_day=string&end_day=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Request
This endpoint is used to upload time series data to the backend. The request is a multipart/form-data request with two parts:
- file: The zipped CSV file containing the time-series data.
- type: The name of the table the data belongs to.
For extra context visit: Measurements Context
Security
bearer
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/measurement/upload
https://docs.api.nowatch.tech/nowatch/v1/measurement/upload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.api.nowatch.tech/_mock/apis/v1/measurement/upload \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"type": "HEART_BEAT"
}'Response
application/json
{ "status": "success" }
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/measurement/oldest
https://docs.api.nowatch.tech/nowatch/v1/measurement/oldest
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.api.nowatch.tech/_mock/apis/v1/measurement/oldest \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "type": "HEART_BEAT", "earliest": "2019-08-24T14:15:22Z", "latest": "2019-08-24T14:15:22Z" } ]