The NOWATCH API
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
https://docs.api.nowatch.tech/nowatch/v1/user
- 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 \
-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" }
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/user
https://docs.api.nowatch.tech/nowatch/v1/user
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://docs.api.nowatch.tech/_mock/apis/v1/user \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"first_name": "Sponge Bob",
"last_name": "Squarepants",
"date_of_birth": "1986-07-14T00:00:00.000Z",
"height": 180,
"weight": 80,
"gender": "MALE",
"watch_hand": "RIGHT",
"dominant_hand": "RIGHT",
"is_early_access": true,
"platform": "IOS",
"unit": "METRIC",
"employee": true,
"is_admin": true
}'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" }
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/user
https://docs.api.nowatch.tech/nowatch/v1/user
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://docs.api.nowatch.tech/_mock/apis/v1/user \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "status": "success" }