This is a library for integrating Airtable in your flow function for test.flows.network.
```rust use airtableflows::createrecord; use slackflows::{channelmsg_received};
pub fn run() { if let Some(sm) = channelmsgreceived("myworkspace", "mychannel") { 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.