hubKeepDevices(...args)

Arguments

hubId
ID!,non-nullrequired
devices
[String!]!,non-nullrequired

Return type

commandId
timeoutSeconds
Mutation sample
mutation hubKeepDevices($hubId: ID!, $devices: [String!]!) {
  hubKeepDevices(hubId: $hubId, devices: $devices) {
    commandId 
    timeoutSeconds 
    errors {
      message 
      path 
    }
  }
}
Variables
{ "hubId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "devices": [ "Example String" ] }
Response sample
{ "data": { "commandId": "Example String", "timeoutSeconds": 40, "errors": [ { "message": "Example String", "path": "Example String" } ] } }
Previous page