You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2024. It is now read-only.
I get INVALID_API_VERSION when trying to fetch records from Airtable using a personal access token, I assume this is because the program was never migrated to support PAT.
asyncfnget_airtable_records() -> Vec<Record<OnBoardRecord>>{let airtable = Airtable::new_from_env();// Get the current records from a table.letmut records:Vec<Record<OnBoardRecord>> = airtable
.list_records("Submissions","Pending",vec!["OTP"],).await.unwrap();// Iterate over the records.for(i, record)in records.clone().iter().enumerate(){println!("{} - {:?}", i, record);}return records;}