我希望在我的 JSON 请求 URL 中使用包含运算符。这是网址:
https://openpaymentsdata.cms.gov/api/1/datastore/query/50fae62c-ced9-5e10-ad26-1cbc3381ac6b?keys=true&limit=5&offset=0&conditions[0][property]=covered_recipient_profile_id&conditions[0][value ]=99&conditions[0][operator]=contains
我的目标是将多个配置文件 ID 包含到一个请求中。截至目前,我一次只能查看一个涵盖的收件人。我使用了 in 运算符,但我不知道如何为多个 ID 设置 URL 的格式。
这是请求 URL 中 IN 运算符的正确格式:
https://openpaymentsdata.cms.gov/api/1/datastore/query/50fae62c-ced9-5e10-ad26-1cbc3381ac6b?keys=true&limit=100&offset=0&conditions[0][property]=covered_recipient_profile_id&conditions[0][运营商]=in&conditions[0][value][1]=[ID1]&conditions[0][value][2]=[ID2]