The NOWATCH API
- (Admin) Get all beta requests
Fetch profile
Update profile
Delete account
Request beta access
Update password
Fetch settings
Update settings
Export data
Create data export
List data exports
Get export status
Get export result (download file)
(Admin) Get all users
(Admin) Set beta request status
(Admin) Update any users profile
(Admin) Fetch any user profile by email
(Admin) Fetch list of users who have measurements since date
(Admin) Fetch any user profile
(Admin) Get all beta requ...
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/user/admin/all
https://docs.api.nowatch.tech/nowatch/v1/user/admin/all
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.api.nowatch.tech/_mock/apis/v1/user/admin/all \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "id": "uid_69954cbc5ef58c2b4a140903bceed6c0NYBoQ803kphGz89qu9KsaXtlJVdF56KNYVf1fh5d8UKls1Hn4v1/M/MzM058S8Ec", "email": "spongebob@bikinibottom.com", "firstName": "Sponge Bob", "lastName": "Squarepants", "isEarlyAccess": true, "gender": "MALE", "watchHand": "RIGHT", "dominantHand": "RIGHT", "height": 10, "weight": 0.028, "dateOfBirth": "1986-07-14T00:00:00.000Z", "isAdmin": true, "unit": "METRIC", "employee": true, "lastSyncAt": "2024-01-01T12:00:00.000Z" } ]
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/user/admin/beta/all
https://docs.api.nowatch.tech/nowatch/v1/user/admin/beta/all
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.api.nowatch.tech/_mock/apis/v1/user/admin/beta/all \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "id": "uid_69954cbc5ef58c2b4a140903bceed6c0NYBoQ803kphGz89qu9KsaXtlJVdF56KNYVf1fh5d8UKls1Hn4v1/M/MzM058S8Ec", "email": "spongebob@bikinibottom.com", "firstName": "Sponge Bob", "lastName": "Squarepants", "isEarlyAccess": true, "gender": "MALE", "watchHand": "RIGHT", "dominantHand": "RIGHT", "height": 180, "weight": 80, "dateOfBirth": "1986-07-14T00:00:00.000Z", "unit": "METRIC", "employee": true, "lastSyncAt": "2024-01-01T12:00:00.000Z", "datetimeRequested": "2019-08-24T14:15:22Z", "betaLastUpdated": "2019-08-24T14:15:22Z", "status": "string" } ]
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/user/admin/beta/set
https://docs.api.nowatch.tech/nowatch/v1/user/admin/beta/set
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.api.nowatch.tech/_mock/apis/v1/user/admin/beta/set \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"userId": "string",
"status": "PENDING"
}'Response
application/json
{ "status": "success" }