Notion Search Module - Filter Not Showing Status Field

I have connected correctly to Notion. Using the normal notion modules doesn’t find the database ID. Using the Notion Search module, I can find the database ID just fine. When I go to the filter field, it finds every field in the database EXCEPT the Status field doesn’t show up as an option. I need to filter based on the status field- any ideas of what I can do to get this to work? I have removed and re-added the status field, and it still doesn’t show up. Any suggestions?
Thank you!

The Status property type is not supported in the “Search objects” module in Make currently, so this is a general problem with that module rather than with your setup.

As a solution, you could use the “Make an API call” module with this setup:

  • URL: v1/databases/{database_id}/query
  • Method: POST
  • Body: {
    “filter”: {
    “and”: [
    {
    “property”: “Status”,
    “status”: {
    “equals”: “…”
    }
    }
    ]
    }
    }

Replace {database_id} with your database ID. Replace “…” with the status option you would like to filter by