Events: Shutdown

Shutting down

PropertyValueDescription
shutdowntrueBoolean: Shutdown immediately
shutdown5Numeric: Shutdown in 5 seconds

GraphQL

mutation {
  instances {
    entities {
      update(
        label: "/org/inexor/commands/core/shutdown"
        properties: [
          {
            name: "shutdown"
            value: 5
          }
        ]
      ) {
        id
        type {
          name
        }
        properties(
          names: [
            "shutdown"
          ]
        ) {
          name
          value
        }
      }
    }
  }
}