Skip to content

NOWATCH API (0.9.0)

The NOWATCH API

Download OpenAPI description
Overview
Languages
Servers
Mock server

https://docs.api.nowatch.tech/_mock/apis/

https://docs.api.nowatch.tech/nowatch/

Operations
Operations

firmware

Firmware updates and downloads

Operations

admin-firmware

Admin firmware management

Operations

measurement

Time series health data (heart rate, temperature, activity, etc.)

Operations

insight

User insights, feedback, and reflections

Operations
Operations

checkin

User check-ins and wellness tracking

Operations
Operations

day-feedback

Daily feedback and mood tracking

Operations
Operations

activity

Sessions wrapper for activities

Operations

intention

Sessions wrapper for intentions

Operations

statistics

Aggregated health statistics

Operations

sharing

Manage sharing your data with other people

Operations

Request

Cancels a pending request that was sent to another user asking for dashboard access. For extra context visit: Sharing Context

Security
bearer
Bodyapplication/jsonrequired
emailstringrequired

The email of the user

curl -i -X DELETE \
  https://docs.api.nowatch.tech/_mock/apis/v1/sharing/request \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string"
  }'

Responses

Request deleted successfully

Request

Accepts a request from another user to view your dashboard. Once accepted, the requester will gain access to your dashboard data from the specified date. For extra context visit: Sharing Context

Security
bearer
Bodyapplication/jsonrequired
emailstringrequired

The email of the user

curl -i -X POST \
  https://docs.api.nowatch.tech/_mock/apis/v1/sharing/request/accept \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string"
  }'

Responses

Request accepted successfully

Bodyapplication/json
fromIdstringrequired
fromEmailstringrequired
toIdstringrequired
toEmailstringrequired
sharedSincestring(date-time)required
createdstring(date-time)required
lastUpdatedstring(date-time)required
Response
application/json
{ "fromId": "string", "fromEmail": "string", "toId": "string", "toEmail": "string", "sharedSince": "2019-08-24T14:15:22Z", "created": "2019-08-24T14:15:22Z", "lastUpdated": "2019-08-24T14:15:22Z" }

Request

Declines a request from another user to view your dashboard. The requester will not be notified of the rejection. For extra context visit: Sharing Context

Security
bearer
Bodyapplication/jsonrequired
emailstringrequired

The email of the user

curl -i -X POST \
  https://docs.api.nowatch.tech/_mock/apis/v1/sharing/request/reject \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string"
  }'

Responses

Request rejected successfully

shared

Manage other people's data shared with you

Operations

telemetry

Application telemetry data (spans, metrics, logs)

Operations