Skip to main content
POST
/
api
/
v1
/
api
/
order
/
withdrawWithoutVerify
提交提款/能量租赁订单(无需二次确认)
curl --request POST \
  --url https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawWithoutVerify \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-KEY: <x-api-key>' \
  --data data=MznFksCdDmVmO2y2WkC3cN24a6VYubpGu3KCn3QYdG62JrANxPiw3......
{
  "code": 0,
  "message": "",
  "data": "G+RlQN2lJ4qQtiXJC7Y6rgHm5UI7TqM1fhPQ8CEf2C4e3jHu4yoK6pUkGIv+6FNyYKqNrVnqj5RqLAH/mtvrhI6rf235aUvv0gK/rVrpCUKDN46F2PFJ/PAe7H32tzd0iJn4Dn/EKt4TRmqm3rgoFZSbkvEnuzVYS+6ikPDrkgMzgx6Xg7U+y4esvWqMsJzt7x/CllGdJj6Me386qXD1PD558HydR9TteDWl4FqfvACx/6T64BAy/F4f3HqSfoBt9NuUN3s0SdXFVZt2Lq8Nycem0lDWuvacqlOkCMgCcTvmDyDPDG3Kn8Mq1wtiCxikBOlwGoxMDN/yyN30N7EaBA=="
}

Documentation Index

Fetch the complete documentation index at: https://waasapi.uuwallet.com/llms.txt

Use this file to discover all available pages before exploring further.

API Description

Merchants can use this interface to submit orders that require no secondary confirmation, supporting two business types: • When the symbol is a digital currency (such as USDT, USDC…), the order represents a ​​withdrawal order​​. • When symbol=ENERGY, the order represents an ​​energy lease order​​.

Headers

Content-Type
string
required

必须设置为 application/x-www-form-urlencoded

X-API-KEY
string
required

平台分配的商户身份凭证

Example:

"53af2797-3eca-4412-b0cc-15273afe2d3e"

Body

application/x-www-form-urlencoded
data
string
required

Base64编码的RSA加密数据,由以下原始参数加密生成:

userId (integer): 商户在WaaS系统中的ID。

tenantUserId (string): 指的是商户系统中的用户ID。

tenantType (integer): 表示商户的类型,这里规定类型为1。

callBackId (string): 商户需确保该 callBackId 的唯一性。

symbol (string): 业务类型标识:

  • 提款业务:货币符号,如 "USDT", "USDC", "PHT"等。

  • 能量租赁业务:固定为 "ENERGY"。

chainName (string): 表示区块链的名称,例如:TRON、ETH...。

toAddr (string): 接收方的地址,例如:toAddress123,表示转账目标地址。

amount (BigDecimal): 业务操作数值:

  • 提款业务:转账的金额,例如:0.5。

  • 能量租赁业务:租赁能量笔数(整数),如:3。

expiryHours (integer): 租赁有效期(小时),仅当symbol="ENERGY"时必填。"

Pattern: ^[A-Za-z0-9+/]+={0,2}$
Example:

"MznFksCdDmVmO2y2WkC3cN24a6VYubpGu3KCn3QYdG62JrANxPiw3......"

Response

成功响应

code
integer
required

业务状态码(0 = 成功),其他值均表示失败。

Example:

0

message
string
required

正常情况下返回为空,当请求失败时则会返回错误信息。

Example:

""

data
string
required

Base64编码的RSA加密数据,由以下原始参数加密生成:

tenantUserId (integer): 表示商户系统中的用户ID。

id (string): 商户发起业务请求(提款或能量租赁)时需生成唯一回调ID,WaaS会在响应中返回该ID以供确认。

Example:

"G+RlQN2lJ4qQtiXJC7Y6rgHm5UI7FNyY/yyN30N7EaBA==...."