This topic is locked
[SOLVED]

Rest-Api problem

12/5/2021 11:20:21 AM
PHPRunner General questions
J
Jan author

Hello, I have created a table "members" with "airtable". With rest-api I can retrieve the table in my phprunner project. The table contains three fields: "name", "email" and "status". the records whose "status" field has a value of "1" may only be visible in phprunner. Normally you can solve that with a "view", but that is not possible with rest-api (as far as I know). How can I solve this ? Thanks

Sergey Kornilov admin 12/5/2021

Check this event: Before Record Processed

If you return false in this event, the record will be skipped on the List page.

J
Jan author 12/6/2021

Thanks for the helpful tip !