Is there any way using a Notion search objects module to search by a status field? It’s not listed in the available fields which seems strange. This seems like something very basic which is why I I wonder if there is a solution.
I’ve done some searching but so far I haven’t found anyone who successfully uses a status field on a search object.
The Status property is currently not supported in the Notion Search Objects module in Make. You may use the “Make an API Call” Notion module. This is the official documentation.
URL: /v1/databases/{{databaseID}}/query
Method: POST
Body:
{
“filter”: {
“and”: [
{
“property”: “Status”,
“status”: {
“equals”: “Example status”
}}]}}
1 Like
Ah - I didn’t think about this. Thank you!
1 Like