kntn_parse: Parse 'kintone' API Response

Description Usage Arguments See Also Examples

Description

Convert various kinds of fields to the correspondent R classes.

Usage

1
2
3
4
5

Arguments

records

List objects converted from multiple kintone records.

record

List object converted from a single kintone record.

See Also

https://developer.kintone.io/hc/en-us/articles/212494818/

Examples

1
2
3
4
5
6
7
8
9
library(jsonlite)

rcd_file <- system.file("extdata/record.json", package = "kntnr")
rcd <- fromJSON(rcd_file, simplifyVector = FALSE)$record
kntnr:::kntn_parse_record(rcd)

rcds_file <- system.file("extdata/records.json", package = "kntnr")
rcds <- jsonlite::fromJSON(rcds_file, simplifyVector = FALSE)$records
kntnr:::kntn_parse_records(rcds)

kntnr documentation built on April 14, 2020, 5:36 p.m.