# 查看合同流转记录分页列表
# 调用方式: GET
# 接口地址:
https://api.freelog.com/v2/contracts/{contractId}/transitionRecords
1
# url传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
skip | 可选 | int | 跳过的数量.默认为0. |
limit | 可选 | int | 本次请求获取的数据条数.一般不允许超过100 |
contractId | 必选 | string | 合约ID |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
contractId | string | 合同ID |
fromState | string | 起始状态名称 |
toState | string | 目标状态名称 |
subjectType | int | 标的物类型 |
eventId | string | 事件ID |
createDate | date | 创建日期 |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": {
"skip": 0,
"limit": 10,
"totalItem": 1,
"dataList": [{
"contractId": "609e20e30bb0f84db0007494",
"fromState": "initial",
"toState": "finish",
"eventId": "9ab1213ba71a4fd7b071f50025358dfa",
"createDate": "2021-05-14T07:04:03.569Z"
}]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
← 查看标的物签约数量 多个合约的最新流转记录 →