Skip to main content
POST
/
api
/
v1
/
api
/
order
/
withdrawRequest
请求提币订单(需二次确认)
curl --request POST \
  --url https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-KEY: <x-api-key>' \
  --data data=YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S...
import requests

url = "https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest"

payload = { "data": "YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S..." }
headers = {
"Content-Type": "<content-type>",
"X-API-KEY": "<x-api-key>"
}

response = requests.post(url, data=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'Content-Type': '<content-type>', 'X-API-KEY': '<x-api-key>'},
body: new URLSearchParams({data: 'YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S...'})
};

fetch('https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "data=YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S...",
CURLOPT_HTTPHEADER => [
"Content-Type: <content-type>",
"X-API-KEY: <x-api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest"

payload := strings.NewReader("data=YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S...")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Content-Type", "<content-type>")
req.Header.Add("X-API-KEY", "<x-api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest")
.header("Content-Type", "<content-type>")
.header("X-API-KEY", "<x-api-key>")
.body("data=YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S...")
.asString();
require 'uri'
require 'net/http'

url = URI("https://waas2-out-api.powersafe-rel.cc/api/v1/api/order/withdrawRequest")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = '<content-type>'
request["X-API-KEY"] = '<x-api-key>'
request.body = "data=YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S..."

response = http.request(request)
puts response.read_body
{
  "code": 0,
  "message": "",
  "data": "KMMiCBQVBt9WsfiIYACX/9gtyIGBJkSijwuKx4Dr8755EMtpHCE5Vev6YMSDiKyJ....."
}

API Description

The merchant submits a withdrawal order that requires a second confirmation.

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 (integer): 表示商户系统中的用户ID。

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

callBackId (string): 商户需确保该 callBackId 的唯一性。WaaS 在收到请求后,将使用该参数主动回调商户,以获取具体的提币单信息。

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

"YMMpi1yLhJJbUYEN9IC3VXNXgfSBqKdHfOD4cf6cOlBb75whL9S..."

Response

成功响应

code
integer
required

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

Example:

0

message
string
required

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

Example:

""

data
string
required

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

tenantUserId (string): WaaS在响应中返回tenantUserId以供确认。

Example:

"KMMiCBQVBt9WsfiIYACX/9gtyIGBJkSijwuKx4Dr8755EMtpHCE5Vev6YMSDiKyJ....."