This is a library for integrating Airtable in your flow function for test.flows.network.
```rust use airtableflows::createrecord; use slackflows::{listento_channel};
pub fn run() { listentochannel("myworkspace", "mychannel", |sm| { let record = serdejson::json!({ "Name": sm.text, }); createrecord("accountName", "mybaseId", "mytable", record); }); } ```
When a new message is received from mychannel
, we will create a new record in the table mytable
of base mybaseId
using create_record
.
The whole document is here.