- 支付
- 私域
- 公域
- 营销
- 资金
- 会员
- 信用
- 安全
- 其他
查询商户某个产品的签约状态
开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
POST
/v3/alipay/open/agent/signstatus/query
alipay.open.agent.signstatus
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/v3/alipay/open/agent/signstatus/query' \
--header 'Content-Type: application/json' \
--data-raw '{
"pid": "支付宝账号:2088123451234543或手机号:13811111111或邮箱:123@xxx.com",
"product_codes": "I1011000100000000001"
}'
响应示例响应示例
200 - 示例 1
{
"sign_status_list": [
{
"product_code": "FACE_TO_FACE_PAYMENT",
"product_name": "当面付收单",
"status": "none|valid|restrictValid|audit|waitConfirm|auditReject|invalid|restrictInvalid"
}
]
}
请求参数
Body 参数application/json
pid
string
可选
示例值:
支付宝账号:2088123451234543或手机号:13811111111或邮箱:123@xxx.com
product_codes
array[string]
可选
示例值:
I1011000100000000001
示例
返回响应
🟢200common response
application/json
Body
sign_status_list
array[object (ProductSignStatusInfo) {3}]
可选
product_code
string
产品编码
示例值:
FACE_TO_FACE_PAYMENT
product_name
string
产品名称
示例值:
当面付收单
status
string
可选
示例值:
none|valid|restrictValid|audit|waitConfirm|auditReject|invalid|restrictInvalid
🔴500请求失败