API Docs
Wallets & Payment
Update Wallet Payment

Update Wallet Payment

Mutation to modify the option for your payments (Threshold, weekly etc...)

Example

mutation updateWalletPayment {
  updateWalletPayment(
    input: {
      weeklyIntervalPaymentFrequency: TUESDAY
      paymentMode: THRESHOLD
      coinId: BTC
      otp: ""
      uname: "your_username"
    }
  ) {
    wallet {
      paymentMode
      paymentIntervalHours
      paymentThreshold
      remainingFreezingTime
      pendingBalance
      weeklyIntervalPaymentFrequency
    }
  }
}

Response

{
  "data": {
    "updateWalletPayment": {
      "wallet": {
        "paymentMode": "THRESHOLD",
        "paymentIntervalHours": ,
        "paymentThreshold": ,
        "remainingFreezingTime": ,
        "pendingBalance": "0.00",
        "weeklyIntervalPaymentFrequency": "TUESDAY"
      }
    }
  }
}

Arguments

  • weeklyIntervalPaymentFrequency
VALUES: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
  • paymentMode
VALUES: THRESHOLD, DAILY_INTERVAL, WEEKLY_INTERVAL
  • coinId
  ARRR
  BTC
  DASH
  DCR
  KMD
  LBC
  SC
  SCP
  ZEC
  ZEN
  USD
  TBTC
  ETH
  TETH
  USDT