Switch Tab

GET /application/switch-tab

Switches the application tab

Query parameters

  • tab string Required

    The tab to switch to

    Values are equipment, skyatlas, framing, flatwizard, sequencer, imaging, or options.

Responses

GET /application/switch-tab
curl \
 --request GET 'http://localhost:1888/v2/api/application/switch-tab?tab=equipment'
Response examples (200)
{
  "Response": "Switched tab",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (400)
{
  "Response": "string",
  "Error": "Invalid application tab",
  "StatusCode": 400,
  "Success": false,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}