# 3. Set Withdrawal Threshold

# Request URL

  • /api/jt/wallet/open/user/withdrawThreshold

# Request Method

  • POST

# Request Headers

Parameter Name Required Type Description
Content-Type Yes string application/json

# Request Parameters

Parameter Name Required Type Description
appId Yes string Application APPID
accountNo Yes string Wallet user account number
timestamp Yes long Current timestamp
withdrawThreshold Yes int Withdrawal threshold (in cents)

# Request Example

{
  "appId": "f90addc4861540ef9312e87d8f360e08",
  "accountNo": "2200724250330395",
  "withdrawThreshold": 10000,
  "timestamp": 1715595802,
  "sign": "EJeMHGDlLu3DdbIK/52aID1soLrD0rfGcEEsAQ8cXFWaXQHioVwfZUD82U5g67NTXP/F/0Mhg6bK7n6rJlC/clYzqZ1kHmO2FbCdujw0ATY+FfM6VkgVT4pXr1jYmg3Xe23RDqhFvkDcOfRvaGPtnf64yrQG32MZps23TsbnafitDbtfqSoDIZkDCw1j1EH3Shhd64xKh9L3O8ivyF2UDOiHSAD8+18JXOxMWMFcR01STKE5B+zlEu5OA98+ClDBdroekBVKDeBeagwwQr+0zDFUvAb+2QIPKA2o0JM3ooituiaKVCgCVfndNjk8wIzKz2QYp+RhjVOC/u+8+Yoqb4KoWjGkMXgDbM1GZpdHG/BmzqXqhnNF0Y0LYS4bkITstlOm30nnHSljT5bxjk2Sq1hp9259SqMdp52OyoznxbRwEva5Wk5YPo+zD8IHOctEjkwWXz9/jo2evK6QcWCOH2LM6cG7EoP6Cg+5P2AUTofSMZsn/ZnAy6h9MXIuirDBiujrKMk85EY74s8i7yCNmjQ5NRbPbKsNTJbkxp2cRSMPzYPzOXXqEgKMmYzVQ5SSAcqFZIj2fAOL/3fG+2aEMn/8AFjJuD3/160BmYCZbAY4A2LJow6SGP/OcifvWPwoziJv0IP5Jff59w0mv6h0+3HnJg5YAcqK7dani1C0cAQ="
}

# Response Parameters

Parameter Name Type Description
code int Status code
msg string Status message
data object Response data

# data Parameters

Parameter Name Type Description
accountNo string Wallet user account number
withdrawThreshold int Withdrawal threshold (in cents)

# Response Example

{
  "code": 1000,
  "message": "success",
  "data": {
    "accountNo": "2200724250330395",
    "withdrawThreshold": 10000
  }
}

# Response Failure Example code see reference

{
    "code":1002,
    "message":"merchant white ip forbidden"
}