信用证交单
开发中
POST
/collectandpay/receive/precentation
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
flctype
string
类型
list
array [object {16}]
可选
lcreditnumber
string
信用证编号
fseq
number
分录号
fhandnumber
string
交单编号
fhanddate
string
交单日期
fhandamount
number
交单金额
fhandamountloc
number
交单金额本位币
fsourcebillnumber
string
收款单号
fsettletype
string
结算方式
fstockdate
string
货物收据日期
fsourcesys
string
来源系统
fdesc
string
用途
remark
string
备注
createBy
string
创建人
fexchangerate
number
汇率
endflag
string
闭环标识
presentationfiles
array [object {2}]
附件
示例
{
"flctype": "string",
"list": [
{
"lcreditnumber": "string",
"fseq": 0,
"fhandnumber": "string",
"fhanddate": "string",
"fhandamount": 0,
"fhandamountloc": 0,
"fsourcebillnumber": "string",
"fsettletype": "string",
"fstockdate": "string",
"fsourcesys": "string",
"fdesc": "string",
"remark": "string",
"createBy": "string",
"fexchangerate": 0,
"endflag": "string",
"presentationfiles": [
{
"name": "string",
"url": "string"
}
]
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://10.36.8.67/stage-api/collectandpay/receive/precentation' \
--header 'Content-Type: application/json' \
--data-raw '{
"flctype": "string",
"list": [
{
"lcreditnumber": "string",
"fseq": 0,
"fhandnumber": "string",
"fhanddate": "string",
"fhandamount": 0,
"fhandamountloc": 0,
"fsourcebillnumber": "string",
"fsettletype": "string",
"fstockdate": "string",
"fsourcesys": "string",
"fdesc": "string",
"remark": "string",
"createBy": "string",
"fexchangerate": 0,
"endflag": "string",
"presentationfiles": [
{
"name": "string",
"url": "string"
}
]
}
]
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2023-03-01 09:50:34