查个人线开户进度
代会员调用 · 必带
x-on-behalf-of
⚠ 照 stage 判断,不要自己拼两个状态
这条线上有两个状态:我方的审核(application.status)与上游的开户。「他现在能不能下个人线的单」是两者的函数,我方合成好之后下发成stage 这一位。
自己拼的话必然在某个组合上与我方不一致 —— 典型是我方已通过而上游还在审时你放行下单:钱冻住、分发失败,而那笔钱在会员自己解不开、运营也够不着的桶里。
stage 是 ready 时才可以下 line: "pobo" 的单。
请求头
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
x-on-behalf-of |
string | 必填 | 查哪个会员。 |
响应
200从没申请过时
application 是 null(不是缺字段)。{
"application": {
"id": "vpa_12",
"status": "reviewing",
"reviewed_at": "",
"created_at": "2026-08-13T20:00:00.000Z"
},
"stage": "reviewing"
}403
insufficient_scope 缺 remittances:read404
member_not_found请求
curl -X GET 'https://api.zise.com/v1/remit/vp/applications' \
-H 'x-auth-token: Bearer $TOKEN' \
-H 'x-on-behalf-of: $MEMBER_ID'const res = await fetch("https://api.zise.com/v1/remit/vp/applications", {
method: "GET",
headers: {
"x-auth-token": "Bearer $TOKEN",
"x-on-behalf-of": "$MEMBER_ID",
},
});
// 金额按字符串读,别让它变成 number
const data = await res.json();import requests
res = requests.get(
"https://api.zise.com/v1/remit/vp/applications",
headers={
"x-auth-token": "Bearer $TOKEN",
"x-on-behalf-of": "$MEMBER_ID",
},
)
# 金额用 Decimal(str(...)),不要 float
data = res.json()req, _ := http.NewRequest("GET", "https://api.zise.com/v1/remit/vp/applications",
nil)
req.Header.Set("x-auth-token", "Bearer $TOKEN")
req.Header.Set("x-on-behalf-of", "$MEMBER_ID")
res, err := http.DefaultClient.Do(req)
// 金额字段用 string 接,不要 float64HttpRequest req = HttpRequest.newBuilder()
.uri(URI.create("https://api.zise.com/v1/remit/vp/applications"))
.header("x-auth-token", "Bearer $TOKEN")
.header("x-on-behalf-of", "$MEMBER_ID")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
// 金额字段用 String / BigDecimal,不要 double$ch = curl_init('https://api.zise.com/v1/remit/vp/applications');
curl_setopt_array($ch, [
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
'x-auth-token: Bearer $TOKEN',
'x-on-behalf-of: $MEMBER_ID',
],
]);
$res = curl_exec($ch);
// 金额用 bcmath / 字符串,不要 floatval
200
{
"application": {
"id": "vpa_12",
"status": "reviewing",
"reviewed_at": "",
"created_at": "2026-08-13T20:00:00.000Z"
},
"stage": "reviewing"
}