收款人列表(含 name_mismatch 风控位)
代会员调用 · 必带
x-on-behalf-of
列的是这个会员与收款人的关联,按关联建立时间倒序。
收款人主体是平台级共享的(多个会员可能汇向同一个银行账户),
所以这里出的字段是「主体的公开面 + 这一条关联自己的东西」
(nickname / name_mismatch / created_at 属于后者)。
⚠ name_mismatch: true 的含义:**这个银行账户此前以另一个户名
登记过**。它是洗钱/填错的高价值信号,我方在下单时会把它喂进风控,
但不替你拦 —— 你自己的风控要不要拦,你决定。
它此前只出现在建档那一次的响应里,用户关掉弹窗就再也看不到了。
⚠ status 与 upstream_status 是两件事,别只读前者。
status 是我方本地的启停位(active / blocked),
新建的收款人恒为 active —— 它不表示上游认这条收款人。
上游那一侧在 upstream_status,取值见
GET /v1/remit/payees/{id}。这一位在 2026-08-13 之前完全不出参,
于是每一条新收款人看起来都是「一切正常」。
查询参数
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
line |
"express" | "pobo" | 可选 | 按哪条线求 upstream_status。同一条收款人在两条线下是两条独立的
上游记录(个人线走该会员自己的子账户上下文),各建各的、各失败各的
—— 所以这个问题脱离线别问不出来。其余字段与它无关。 |
limit |
integer | 可选 | 每页条数。缺省 20,上限 100,非法值一律回落到 20。 |
cursor |
string | 可选 | 上一页返回的 next_cursor。不透明串,不要自己拼 ——
解不开的游标按「从头开始」处理而不是报错。 |
请求头
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
x-on-behalf-of |
string | 必填 | 代哪个会员调用。 |
响应
200OK
{
"data": [
{
"id": "pye_1042",
"nickname": "房东",
"entity_type": "INDIVIDUAL",
"country": "GB",
"currency": "GBP",
"payment_method": "LOCAL",
"clearing_system": "FASTER PAYMENTS",
"summary": "Barclays ····4821",
"bank_name": "Barclays",
"account_holder": "MARY SMITH",
"status": "active",
"upstream_status": "not_submitted",
"name_mismatch": false,
"created_at": "2026-08-01T02:11:04Z"
}
],
"next_cursor": "MjAyNi0wOC0wMVQwMjoxMTowNFp8MTA0Mg",
"has_more": true
}请求
curl -X GET 'https://api.zise.com/v1/remit/payees' \
-H 'x-auth-token: Bearer $TOKEN' \
-H 'x-on-behalf-of: $MEMBER_ID'const res = await fetch("https://api.zise.com/v1/remit/payees", {
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/payees",
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/payees",
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/payees"))
.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/payees');
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
{
"data": [
{
"id": "pye_1042",
"nickname": "房东",
"entity_type": "INDIVIDUAL",
"country": "GB",
"currency": "GBP",
"payment_method": "LOCAL",
"clearing_system": "FASTER PAYMENTS",
"summary": "Barclays ····4821",
"bank_name": "Barclays",
"account_holder": "MARY SMITH",
"status": "active",
"upstream_status": "not_submitted",
"name_mismatch": false,
"created_at": "2026-08-01T02:11:04Z"
}
],
"next_cursor": "MjAyNi0wOC0wMVQwMjoxMTowNFp8MTA0Mg",
"has_more": true
}