5 unstable releases
0.3.2 | Nov 30, 2020 |
---|---|
0.3.1 | Feb 11, 2020 |
0.3.0 | Feb 11, 2020 |
0.2.0 | Jan 26, 2020 |
0.1.0 | Jan 26, 2020 |
#1544 in #api-client
15KB
182 lines
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
Dependencies
~10–14MB
~263K SLoC