API Docs
Wallets & Payment
Update Wallet Threshold

Update Wallet Threshold

Mutation to modify the payment threshold.

Example

mutation updateWalletThreshold {
  updateWalletThreshold(input: { uname: "your_username", coinId: BTC, threshold: 0.001, otp: "" }) {
    clientMutationId
    wallet {
      paymentThreshold
    }
  }
}

Response

{
  "data": {
    "updateWalletThreshold": {
      "wallet": {
        "paymentThreshold": 0.001
      }
    }
  }
}

Arguments

  • uname (String!)

  • cid (CurrencyProfileName)

enum CurrencyProfileName {
  ARRR
  BTC
  DASH
  DCR
  KMD
  LBC
  SC
  SCP
  ZEC
  ZEN
  USD
  TBTC
  ETH
  TETH
  USDT
}