如何使用 Yes/No 字段过滤 REST API URL 中的列表

how to filter the list in REST API URL using Yes/No field

我已经为 select 完成了 API,并且工作正常。

当我尝试使用下面的查询进行过滤时,它不起作用。

?$filter=IsRequired eq 'Yes'

我收到错误:

$filter=IsRequired eq 1" is not valid.

欢迎查看并提出建议。

要使用 REST API 过滤 Yes/No 字段,您需要使用下面的过滤器来实现它。

$filter=IsRequired eq 1

休息 API:

/_api/web/lists/getbytitle('listname')/items?$select=Title&$filter=IsRequired eq 1