API Updates for February 2020

API Updates

The next Kintone update is 7th February 2020. The release also includes the following updates.

Kintone REST API

Spec changes

  • The following APIs will be able to be authenticated with API tokens:
  • The following APIs for managing form layouts and fields will be able to get, add, or update names of Table fields:
    • Related APIs:
    • Details:
      • The "label" and "noLabel" properties will be added to the Table object in the API request or response.

      • Example: Using the Get Form Fields API to retrieve a Table field will result in the following:

         1
         2
         3
         4
         5
         6
         7
         8
         9
        10
        11
        12
        
        {
          // ...,
          "Table": {
            "type": "SUBTABLE",
            "code": "Table",
            "noLabel": false, // New property to be added
            "label": "Table Name", // New property to be added
            "fields:": {
              // ...
            }
          }
        }