- OPEN登录
- 业务模型关系接口
- 关联关系:删除
- 关联关系:每刻单据+流水
- 关联关系:自定义单据+每刻单据
- 关联关系:凭证+凭证
- 关联关系:凭证+自定义单据
- 关联关系:凭证+每刻报销单据
- 关联关系:凭证+流水
- 关联关系:凭证+回单
- 关联关系:凭证+承兑汇票
- 迁移老的虚关系表数据到新的虚关系表POST
- 跨系统调阅接口
- open日志接口
- 会计账簿接口
- 基础数据
- 账套接口
- 企业抬头接口
- 账套关联抬头
- 组织架构接口
- 员工信息接口
- 单据类型接口
- 档案类型接口
- 银行账号接口
- 文档管理接口
- 纸档管理
- 会计报表接口
- 流水回单接口
- 承兑汇票接口
- 数据对账接口
- 自定义单据接口
- 借阅接口
- 邮件接口
- 纸质案卷查询接口
- 凭证接口
- 每刻单据
- 完整性检查open接口
open集成日志写入
POST
/open/interface/log/save
请求参数
Header 参数
Authorization
string
可选
默认值:
{{token}}
Content-Type
string
可选
默认值:
application/json
Body 参数application/json
array of:
id
string
可选
taskNo
string
任务编号
taskName
string
任务名称
batchNo
string
执行批次
businessType
string
资料类型
result
string
执行结果
startDate
string
开始时间
executeStatus
string
执行状态
endDate
string
完成时间
executeRange
string
执行范围
remarks
string
摘要
createdBy
string
可选
updatedBy
string
可选
createdAt
string
可选
updatedAt
string
可选
示例
[
{
"id": "string",
"taskNo": "string",
"taskName": "string",
"batchNo": "string",
"businessType": "string",
"result": "string",
"startDate": "string",
"executeStatus": "string",
"endDate": "string",
"executeRange": "string",
"remarks": "string",
"createdBy": "string",
"updatedBy": "string",
"createdAt": "string",
"updatedAt": "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 '/open/interface/log/save' \
--header 'Authorization: {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"id": "string",
"taskNo": "string",
"taskName": "string",
"batchNo": "string",
"businessType": "string",
"result": "string",
"startDate": "string",
"executeStatus": "string",
"endDate": "string",
"executeRange": "string",
"remarks": "string",
"createdBy": "string",
"updatedBy": "string",
"createdAt": "string",
"updatedAt": "string"
}
]'
返回响应
🟢200成功
application/json
Body
errData
array[object (IntegrationLog) {15}]
可选
id
string
可选
taskNo
string
任务编号
taskName
string
任务名称
batchNo
string
执行批次
businessType
string
资料类型
result
string
执行结果
startDate
string
开始时间
executeStatus
string
执行状态
endDate
string
完成时间
executeRange
string
执行范围
remarks
string
摘要
createdBy
string
可选
updatedBy
string
可选
createdAt
string
可选
updatedAt
string
可选
code
integer
结果代码
message
string
结果信息
errMsg
string
错误信息
data
object ()
结果数据
timestamp
string
时间戳
示例
{
"errData": [
{
"id": "",
"taskNo": "",
"taskName": "",
"batchNo": "",
"businessType": "",
"result": "",
"startDate": "",
"executeStatus": "",
"endDate": "",
"executeRange": "",
"remarks": "",
"createdBy": "",
"updatedBy": "",
"createdAt": "",
"updatedAt": ""
}
],
"code": 0,
"message": "",
"errMsg": "",
"data": {},
"timestamp": ""
}
修改于 2023-08-23 08:25:26