# 查看合约应用的展品列表
# 调用方式: GET
# 接口地址:
url: https://api.freelog.com/v2/presentables/{nodeId}/contractAppliedPresentable
1
# url传入参数说明
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
nodeId | 必选 | int | 节点ID |
contractIds | 必选 | string | 合约ID,多个用逗号分隔 |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
contractId | string | 合约ID |
presentables | object[] | 应用的展品 |
**presentableId | string | 展品ID |
**presentableName | string | 展品名称 |
**presentableTitle | string | 展品标题 |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": [{
"contractId": "608932a3470d81721c865874",
"presentables": [{
"presentableId": "608932a36287cc79c81856fe",
"presentableName": "hello",
"presentableTitle": "hello"
}]
}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14