kintone 0.6.2

kintone REST API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Kintone REST API v1
//!
//! This module provides access to Kintone's REST API version 1 endpoints.
//! It contains submodules for different categories of API operations.
//!
//! ## Available API Categories
//!
//! - [`app`] - App management operations (create apps in preview environment)
//! - [`record`] - Record management operations (CRUD operations, comments, workflow)
//! - [`mod@file`] - File upload and download operations
//! - [`space`] - Space and thread management operations

pub mod app;
pub mod file;
pub mod record;
pub mod space;