7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

kintone REST API + Power Queryでレコードを取得する

Posted at

Excel + Power Query + kintone REST API でレコードを取得する。アドホック的な使い方であればまぁそこそこよい感じ。

使ったもの

  • Excel 2016 と Power Query エディター
  • kintone 試用版 のサンプルアプリ(顧客管理)
    • APIトークン

Power Query エディターで

let
    APIHost = "https://****.cybozu.com", APIToken = "<取得済APIToken>",
    JSONviaAPI =
        Json.Document(
            Web.Contents(
                Uri.Combine(
                    APIHost, "k/v1/records.json"
                ),
                [
                    Query = [ 
                        App = "2",
                        Query = "order by レコード番号 asc limit 10 offset 10"
                    ],
                    Headers=[ #"X-Cybozu-API-Token" = APIToken ]
                ]
            )
        ),
    TableFromRecords = Table.FromRecords( JSONviaAPI[records] ),
    ColumnNames = Table.ColumnNames( TableFromRecords ),
    TransformColumns1 =
        Table.TransformColumns(
            TableFromRecords,
            List.Zip( {
                ColumnNames,
                List.Repeat(
                    { each _[value] },
                    List.Count( ColumnNames )
                )
            } )
        ),
    TransformColumns2 =
        Table.TransformColumns(
            TransformColumns1,
            {
                { "更新者", each _[name] },
                { "作成者", each _[name] }
            },
            null, MissingField.Ignore
        )
in
    TransformColumns2

途中こんな感じになるけど慌てなくて大丈夫。
image.png

データ型はよく吟味してから
image.png

500件の制限については、List.Generate 関数 使って解決の方針。

その他

7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?