kntn_file {kntnr} | R Documentation |
'kintone' File API
Description
Get a file from kintone API and parse it with content. If you want to parse it by yourself,
specify as = "raw"
or as = "text"
.
Usage
kntn_file(fileKey, verbose = FALSE, as = NULL, type = NULL, encoding = NULL)
Arguments
fileKey |
File key. |
verbose |
If |
as |
|
type |
|
encoding |
|
See Also
https://developer.kintone.io/hc/en-us/articles/212494468/
Examples
## Not run:
kntn_set_auth()
app <- 10
# get a single record with a file attachment field
d <- kntn_record(app, id = 1)
f <- kntn_file(fileKey = x$Attachment[[1]]$fileKey[1])
## End(Not run)
[Package kntnr version 0.4.4 Index]