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
-
Add Form Fields
/k/v1/preview/app/form/fields.json
-
Update Form Fields
/k/v1/preview/app/form/fields.json
-
Add Form Fields
-
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.
- The "Invalid request." error with status code
- After the fix:
- The "Missing or invalid input." error with status code
400
is returned.
- The "Missing or invalid input." error with status code
- Before the fix:
-