PUTによるデータ登録

Kintone データ登録 (PUT)

/*      if(now_yearsold !== record['yearsold'].value) { 

          //年齢データ登録
          var body = {
            'app': kintone.app.getId(),
            'id': kintone.app.record.getId(),
            'record': {
              'yearsold': {
                'value': record['yearsold'].value
              }
            }
          };
    
          kintone.api(kintone.api.url('/k/v1/record.json', true), 'PUT', body, function(resp) {
            // success
            console.log(resp);
            
          }, function(error) {
            // error
            console.log(error);
          });
      }*/