Stop

GET /sequence/stop

Stop sequence. This requires the sequencer to be initalized, which can be achieved by opening the tab once.

Responses

GET /sequence/stop
curl \
 --request GET 'http://localhost:1888/v2/api/sequence/stop'
Response examples (200)
{
  "Response": "Sequence stopped",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (409)
{
  "Response": "string",
  "Error": "Sequence is not initialized",
  "StatusCode": 409,
  "Success": false,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}