API Docs
Subaccount Management
Get All User Miners Status Summary

Get All User Miners Status Summary

Gives you a summary of the state of your machines on per subaccount basis

Example

query getAllUserMinersStatusSummary {
  getAllUserMinersStatusSummary(mpn: BTC, first: 10) {
    nodes {
      userId
      active
      dead
      username
      warning
    }
    totalCount
  }
}

Response

{
  "data": {
    "getAllUserMinersStatusSummary": {
      "nodes": [
        {
          "userId": ,
          "active": ,
          "dead": ,
          "username": "your_username",
          "warning":
        }
      ],
      "totalCount":
    }
  }
}

Fields

  • mpn (MiningProfileName!)
enum MiningProfileName {
  ARRR
  BTC
  DASH
  DCR
  KMD
  LBC
  SC
  SCP
  ZEC
  ZEN
  EQUI
  TBTC
  ETH
  TETH
}
  • first (Int) Only read the first n values of the set.