# 批量获取合集展品的单品授权结果

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/auths/exhibits/{nodeId}/{exhibitId}/items/batchAuth/results
1

# url传入参数说明:

参数 必选 类型及范围 说明
nodeId 必选 int 节点ID
exhibitId 必选 string 展品ID
itemIds 必选 string 单品ID,多个用逗号分隔

# 返回说明:

返回值字段 字段类型 字段说明
itemId string 单品ID
referee int 做出授权结果的标的物服务类型(1:资源服务 2:展品服务)
defaulterIdentityType int 授权不通过责任方(0:无 1:资源 2:节点 4:c端消费者 8:资源上游 128:未知)
authCode int 授权码
isAuth boolean 是否授权通过
errorMsg string 错误信息

# 返回示例

{
	"ret": 0,
	"errCode": 0,
	"errcode": 0,
	"msg": "success",
	"data": [{
		"itemId": "b50de01d",
		"referee": 2,
		"defaulterIdentityType": 4,
		"authCode": 303,
		"isAuth": false,
		"errorMsg": "标的物未签约"
	}, {
		"itemId": "a2b0784d",
		"referee": 2,
		"defaulterIdentityType": 4,
		"authCode": 303,
		"isAuth": false,
		"errorMsg": "标的物未签约"
	}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21