补充材料


获取补充材料问题详情

获取当前调单详情

端点目标 URL

调用的特定输入参数

字段名称必填类 型描述
merchantReferenceMString虚拟账户创建时的请求流水号

响应data参数

字段名类型说明
merchantReferenceString请求参数中的请求流水号
dynamicTemplateDataObject补充材料问题

dynamicTemplateData字段结构

字段名类型说明
templateIdString当前模板id
templateVersionIdString版本id
businessIdString业务id
fieldListlist<fieldObj>字段列表

fieldObj字段结构

字段名类型说明
fieldString字段标识
labelString字段名
fieldTypeString字段类型
requiredString是否必填(1:必填,0:非必填)
sortedString排序
configconfig字段配置(fieldType值返回对应的类型)
childrenlist<fieldObj>子字段

config字段可能的类型

fieldType类型
TEXTtextConfig
LONGtextConfig
DECIMALtextConfig
MUL_TEXTtextConfig
AMOUNTamountConfig
DATEdateConfig
DATE_RANGEdateConfig
SELECTselectConfig
MULTI_SELECTselectConfig
CHECKBOXselectConfig
FILEfileConfig
IMAGEfileConfig
CASCADERcascaderConfig
TREE_SELECTcascaderConfig
LISTlistConfig
CONTAINERcontainerConfig

textConfig对象信息

字段名类型说明
regexString字段正则校验表达式
regexTipsString字段正则校验错误提示
placeholderString字段填写提示语

amountConfig对象信息

字段名类型说明
amount.placeholderString字段填写提示语
currency.dictKeyString可选币种字典key

dateConfig对象信息

字段名类型说明
minString可以选择的最小时间(yyyy-MM-dd HH:mm:ss)
maxString可以选择的最大时间(yyyy-MM-dd HH:mm:ss)

selectConfig对象信息

字段名类型说明
dictKeyString可选项字典key

fileConfig对象信息

字段名类型说明
placeholderString字段填写提示语
maxCountString最大文件数量
maxSizeString单个文件大小
extensionsString允许的文件类型(多个用,隔开)

cascaderConfig对象信息

字段名类型说明
dictKeyString可选项字典key
multipleString是否多选(1:是,0:否)

listConfig对象信息

字段名类型说明
rowsString默认行数
maxRowsString最大行数
minRowsString最小行数
contentString描述

containerConfig对象信息

字段名类型说明
contentString描述

集成

当前获取补充材料问题调用输出

{
    "code": "0",
    "msg": "succeeded",
    "serverTime": 1778840713915,
    "data": {
        "merchantReference": "VA_PPXFUGGMZD",
        "dynamicTemplateData": {
            "templateId": "189",
            "templateVersionId": "550",
            "businessId": "110",
            "fieldList": [
                {
                    "field": "CONTAINER",
                    "label": " ",
                    "fieldType": "CONTAINER",
                    "required": "0",
                    "sorted": "1",
                    "config": {
                        "content": ""
                    },
                    "children": [
                        {
                            "field": "mcc",
                            "label": "mcc",
                            "fieldType": "SELECT",
                            "required": "1",
                            "sorted": "1",
                            "config": {
                                "dictKey": "mcc_two"
                            },
                            "children": null
                        }
                    ]
                }
            ]
        }
    },
    "success": true
}

获取字典

获取字典

端点目标 URL

字段说明

调用的特定输入参数

字段名称必填类 型描述
dictKeyMstring字典key

响应data参数

字段名类型说明
labelString字典名
valueString字典值
describeString字典描述
childDictList下级字典

集成

获取字典调用输出

{
    "code": "0",
    "msg": "success",
    "serverTime": "1769665336362",
    "data": {
        "value": "web_collec_met",
        "dictId": "149",
        "label": "网站的收款方式",
        "describe": "",
        "childDict": [
            {
                "value": "ACH",
                "dictId": "150",
                "label": "ACH",
                "describe": ""
            },
            {
                "value": "PayPal",
                "dictId": "151",
                "label": "PayPal",
                "describe": ""
            },
            {
                "value": "other",
                "dictId": "152",
                "label": "其他",
                "describe": ""
            }
        ]
    },
    "success": true
}

提交补充材料问题材料

获取当前调单详情

端点目标 URL

调用的特定输入参数

字段名称必填类 型描述
merchantReferenceMString虚拟账户创建时的请求流水号
templateIdMString当前模板id
templateVersionIdMString版本id
businessIdMString业务id
templateTypeMString模板类型,固定填写VA_INCREMENTAL_INFORMATION
dataMMap<String,valueObject>材料填写内容(key为前面获取到的field)

valueObject可能的类型

fieldType类型
TEXTString
LONGString
DECIMALString
MUL_TEXTString
AMOUNTamountValue
DATEString
DATE_RANGEdateRangeValue
SELECTString
MULTI_SELECTList<String>
CHECKBOXList<String>
FILEList<String>
IMAGEList<String>
CASCADERList<String>
TREE_SELECTList<String>
LISTList<Map<String,configValue>
CONTAINER/

amountValue对象信息

字段名类型说明
amountString金额数值
currencyString金额币种

dateRangeValue对象信息

字段名类型说明
dateSString时间段开始时间(yyyy-MM-dd HH:mm:ss)
dateEString时间段结束时间(yyyy-MM-dd HH:mm:ss)

集成

当前提交补充材料问题材料调用输出

{
    "templateId": 18292,
    "templateVersionId": 1302,
    "businessId": 42322,
    "templateType": "VA_INCREMENTAL_INFORMATION",
    "data": {
        "mcc": "1520",
        "field105":"11111111111111111"
    },
    "merchantReference": "merchantReference"
}