JavaScript kintone UI Componentとkintone REST API Clientを使います。 kintone UI Component kintone REST API Client // スペースフィールド取得 const sp = kintone.app.record.getSpaceElement("spBtn"); // ボタン設置 const btn_addRecords = new Kuc.Button({ text: "レコード作成", type: "submit", }); sp.appendChild(btn_addRecords); // ボタンクリック btn_addRecords.addEventListener("click", async (e) => { const client = new KintoneRestAPIClien