# 查询展品合集中的是否存在指定单品

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/presentables/catalogues/{presentableId}/items/checkExists
1

# url传入参数说明:

参数 必选 类型及范围 说明
presentableId 必选 string 合集展品ID
mountIds 必选 string 单品对应的原始展品或资源ID,多个用逗号分隔;最多100个
idType 可选 string 参数mountIds的ID类型 resourceId, presentableId;默认是presentableId

# 返回说明:

返回值字段 字段类型 字段说明
mountId string 单品对应的原始展品ID
isExists boolean 该单品是否已经在合集中

# 返回示例

{
	"ret": 0,
	"errCode": 0,
	"errcode": 0,
	"msg": "success",
	"data": [{
			"mountId": "6600e2a762857a00307f1b2b",
			"isExists": true
		},
		{
			"mountId": "66627752cf9929002f7a2628",
			"isExists": false
		}
	]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15