Start

GET /sequence/start

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

Query parameters

Responses

GET /sequence/start
curl \
 --request GET 'http://localhost:1888/v2/api/sequence/start'
Response examples (200)
{
  "Response": "Sequence started",
  "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"
}