API Docs
Wallets & Payment
Update Wallet Threshold

Update Wallet Threshold

Mutation to modify the payment threshold.

updateWalletThreshold only impact the payments if you have them set By Threshold
⚠️

updateWalletThreshold query has rate limitation in place.

Initially, the API allows for a burst of up to 20 requests, and afterward, it gradually restores 1 request every 10 seconds until reaching the maximum allowable limit of 20.

This limitation is imposed to manage and control the rate at which requests can be made to the API, preventing potential misuse or excessive use of resources.

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
}