Vuforia Studio 导航 > 项目和体验 > 基于模板的体验 > IRS 映射 > GET /id-resolution/mappings
  
GET /id-resolution/mappings
请求参数
名称
必需?
数据类型
参数类型
说明
id
整数
路径
要检索的映射的 ID。如果已指定,则忽略所有查询字符串参数。
key
字符串
查询字符串
只返回键与指定键匹配的映射。这可以与值参数结合使用。
value
字符串
查询字符串
只返回值与指定键匹配的映射。这可以与键参数结合使用。
响应状态码
状态码
说明
200
查询已成功完成。响应符合 IRS 映射架构。
401
所需的登录凭据缺失或不正确。
403
用户没有权限查看映射。
406
Accept 标头不存在且不等于 application/json
500
发生内部服务器错误。
请求主体
请求的主体是一个 JSON 对象,该对象符合映射 JSON 架构并定义了应创建的映射。
示例
按照 ID 的查询映射:
curl -u user:password https://es.example.com/ExperienceService/id-resolution/mappings/1592
按照键的查询映射:
curl -u user:password https://es.example.com/ExperienceService/id-resolution/mappings?key=urn:vuforia:vumark:2:101
按照值的查询映射:
curl -u user:password https://es.example.com/ExperienceService/id-resolution/mappings?value=urn:thingworx:thing:M100-101
按照键和值的查询映射:
curl -u user:password https://es.example.com/ExperienceService/id-resolution/mappings?key=urn:vuforia:vumark:2:101&value=urn:thingworx:thing:M100-101