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/intention
https://docs.api.nowatch.tech/nowatch/v1/intention
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.api.nowatch.tech/_mock/apis/v1/intention \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"start_datetime": "string",
"end_datetime": "string",
"name": "string",
"subjectiveInputs": [
"string"
]
}'- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/intention
https://docs.api.nowatch.tech/nowatch/v1/intention
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.api.nowatch.tech/_mock/apis/v1/intention?start_date=string&end_date=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'shared-user: string'Response
application/json
[ { "id": "string", "startDatetime": "2019-08-24T14:15:22Z", "endDatetime": "2019-08-24T14:15:22Z", "name": "string", "lastUpdated": "2019-08-24T14:15:22Z", "created": "2019-08-24T14:15:22Z", "subjectiveInputs": [ … ], "infoData": {} } ]
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}
https://docs.api.nowatch.tech/nowatch/v1/intention/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'shared-user: string'Response
application/json
[ { "id": "string", "startDatetime": "2019-08-24T14:15:22Z", "endDatetime": "2019-08-24T14:15:22Z", "name": "string", "lastUpdated": "2019-08-24T14:15:22Z", "created": "2019-08-24T14:15:22Z", "subjectiveInputs": [ … ], "infoData": {} } ]
- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}
https://docs.api.nowatch.tech/nowatch/v1/intention/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"start_datetime": "string",
"end_datetime": "string",
"name": "string",
"subjectiveInputs": [
"string"
]
}'- Mock server
https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}
https://docs.api.nowatch.tech/nowatch/v1/intention/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.api.nowatch.tech/_mock/apis/v1/intention/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'