Stop Slew

GET /equipment/mount/slew/stop

Stops any slew, even if it was not started using the api. However this is mainly useful for slews you issued yourself, since it doesn't completely abort slew&centers. Therefore the recommended use is to stop simple slews without center or rotate.

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
  • 409 application/json

    Mount not connected / not slewing

    Hide response attributes Show response attributes object
    • Response string
    • Error string

      Values are Mount not connected or Mount not slewing.

    • StatusCode integer
    • Success boolean
    • Type string
  • 500 application/json

    Internal server error, Unknown error

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
GET /equipment/mount/slew/stop
curl \
 --request GET 'http://localhost:1888/v2/api/equipment/mount/slew/stop'
Response examples (200)
{
  "Response": "Stopped slew",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (409)
{
  "Response": "string",
  "Error": "Mount not connected",
  "StatusCode": 409,
  "Success": false,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}