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
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;}
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: