Information

GET /equipment/dome/info

Get Dome information

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • Response object Required
      Hide Response attributes Show Response attributes object
      • ShutterStatus string

        Values are ShutterNone, ShutterOpen, ShutterClosed, ShutterOpening, ShutterClosing, or ShutterError.

      • DriverCanFollow boolean
      • CanSetShutter boolean
      • CanSetPark boolean
      • CanSetAzimuth boolean
      • CanSyncAzimuth boolean
      • CanPark boolean
      • CanFindHome boolean
      • AtPark boolean
      • AtHome boolean
      • DriverFollowing boolean
      • Slewing boolean
      • Azimuth integer
      • SupportedActions array
      • Connected boolean
      • Name string
      • DisplayName string
      • Description string
      • DriverInfo string
      • DriverVersion string
      • DeviceId string
      • IsFollowing boolean
      • IsSynchronized boolean
    • Error string Required
    • StatusCode integer Required
    • Success boolean Required
    • Type string Required
  • 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/dome/info
curl \
 --request GET 'http://localhost:1888/v2/api/equipment/dome/info'
Response examples (200)
{
  "Response": {
    "ShutterStatus": "ShutterNone",
    "DriverCanFollow": true,
    "CanSetShutter": true,
    "CanSetPark": true,
    "CanSetAzimuth": true,
    "CanSyncAzimuth": true,
    "CanPark": true,
    "CanFindHome": true,
    "AtPark": true,
    "AtHome": true,
    "DriverFollowing": true,
    "Slewing": true,
    "Azimuth": 42,
    "SupportedActions": [],
    "Connected": true,
    "Name": "string",
    "DisplayName": "string",
    "Description": "string",
    "DriverInfo": "string",
    "DriverVersion": "string",
    "DeviceId": "string",
    "IsFollowing": true,
    "IsSynchronized": true
  },
  "Error": "string",
  "StatusCode": 42,
  "Success": true,
  "Type": "string"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}