The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hi,i am using python-requests and trying to use f-string with filterByFormula here is a simple implementation:hard coding the name worked: url=f"https://api.airtable.com/v0/{base_id}/{table_name}/"
headers={'Authorization': f'Bearer {api_key}',
...
I've found my mistake and i will post it here for reference for others:the wrong code:query={"filterByFormula":f"{{full_name}}={employee_name}"}the right code (use single quotes for the '{employee_name}'):query={"filterByFormula":f"{{full_name}}='{em...
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.