API Updates for July 2023

API Updates

The next Kintone update is on 10th July 2023. The release also includes the following API updates.

Update Summary

July's update includes a bug fix for the Add and Update Form Fields REST APIs.

Kintone REST API

Bug fixes

  • A bug exists where APIs would return an unfriendly error message when null is specified for properties.{fieldcode}. This bug will be fixed.
    • Related APIs

    • Conditions

      • If the value of properties.{fieldcode} is null.

         1
         2
         3
         4
         5
         6
         7
         8
         9
        10
        
        {
          "app": 1,
          // ...
          "properties": {
            "SINGLE_LINE_TEXT": null,
            "NUMBER": {
              // ...
            }
          }
        }
        
    • Details

      • Before the fix:
        • The "Invalid request." error with status code 520 is returned.
      • After the fix:
        • The "Missing or invalid input." error with status code 400 is returned.