airtable-flows

Crates.ioairtable-flows
lib.rsairtable-flows
version0.1.9
sourcesrc
created_at2023-01-16 03:00:18.181754
updated_at2023-03-03 08:12:39.548053
descriptionAirtable integration for flows.network
homepage
repository
max_upload_size
id759819
size8,777
DarumaDocker!! (DarumaDocker)

documentation

README

This is a library for integrating Airtable in your flow function for flows.network.

Usage example

use airtable_flows::create_record;
use slack_flows::{listen_to_channel};

#[no_mangle]
pub fn run() {
    listen_to_channel("myworkspace", "mychannel", |sm| {
        let record = serde_json::json!({
            "Name": sm.text,
        });
        create_record("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.

Commit count: 0

cargo fmt