Skip to content

Stop All

Expert Topic for experienced builders.
URI (PUT)
/Stop/
Request Parameters
none
Response Parameters
none
Example_SetMasterNoteLive.py
import requests
import json
port = 59224
baseUrl = 'http://localhost:{}/'.format(port)
requestUrl = baseUrl + 'Stop/'
try:
response = requests.put(requestUrl)
response.raise_for_status()
except requests.exceptions.RequestException as e:
raise SystemExit(e)