kintone-rs 0.3.2

A kintone API client for Rust language
Documentation

kintone-rs

A kintone API client for Rust language.

THIS IS NOT AN OFFICIAL LIBRARY, JUST A HOBBY PROJECT

CLI

Please check the help message.

kintone-rs --help

Crate

use kintone_rs::KintoneAPIClient;

let YOUR_APP_ID = 1;
let YOUR_RECORD_ID = 2;

let api_client = KintoneAPIClient::new("https://example.cybozu.com", "YOUR_API_TOKEN");

// Get a record
let record = api_client.record.get_record(YOUR_APP_ID, YOUR_RECORD_ID).expect("An error occured");

// Get records
let records = api_client.record.get_records(
    YOUR_APP_ID,
    Some("Company_Name = \"foo\""),
    Some(vec!["Company_Name", "Address"])
);

Support APIs

LICENSE

MIT