The project is in a healthy, maintained state
Dumps records to Kintone.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
 Dependencies

Development

~> 1.0
~> 12.0
 Project Readme

kintone output plugin for Embulk

Build Status

Overview

kintone output plugin for Embulk stores app records from kintone.

Configuration

  • domain: kintone domain(FQDN) e.g. devfoo.cybozu.com (string, required)
  • username: kintone username (string, optional)
  • password: kintone password (string, optional)
  • token: kintone app token. Username and password or token must be configured. If all of them are provided, this plugin uses username and password (string, optional)
  • app_id: kintone app id (integer, required)
  • basic_auth_username: kintone basic auth username Please see kintone basic auth here (string, optional)
  • basic_auth_password: kintone basic auth password (string, optional)
  • guest_space_id: kintone app belongs to guest space, guest space id is required. (integer, optional)
  • mode: kintone mode (string, required)
  • update_key: column name to set update key (string, required if mode is update or upsert)
  • column_options advanced: a key-value pairs where key is a column name and value is options for the column.
    • field_code: field code (string, required)
    • type: field type (string, required)
    • timezone: timezone to convert into date (string, default is UTC)
    • val_sep: Used to specify multiple checkbox values (string, default is ,)

Example

out:
  type: kintone
  domain: example.cybozu.com
  username: username
  password: password
  app_id: 1
  mode: upsert
  update_key: id
  column_options:
    id: {field_code: "id", type: "NUMBER"}
    name: {field_code: "name", type: "SINGLE_LINE_TEXT"}
    number: {field_code: "num", type: "NUMBER"}
    date: {field_code: "date", type: "DATE"}
    date_time: {field_code: "datetime", type: "DATETIME"}

Build

$ ./gradlew gem  # -t to watch change of files and rebuild continuously

Development

$ ./gradlew build
$ ./gradlew test