Skip to content
Takuro Hishikawa edited this page Jan 15, 2024 · 2 revisions

Record

レコードの取得

$request = new \Kintone\Request($subdomain,$apitoken);

$appID = 1;
$recordID = 1;
$res = (new \Kintone\Record\Record($request))->getByID($appID,$recordID);

$record = $res->getRecord();

レコードの登録

$request = new \Kintone\Request($subdomain,$apitoken);

$appID = 1;
$array = [
    'foo' => ['value' => 'bar']
];

$res = (new \Kintone\Record\Record($request))->postRecord($appID, $array);

レコードの更新

開発中

Clone this wiki locally