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:
- Relevant APIs:
-
Get App Deploy Status
(
/k/v1/preview/app/deploy.json
) -
Deploy App Settings
(
/k/v1/preview/app/deploy.json
) -
Get Form Layout
(
/k/v1/app/form/layout.json
and/k/v1/preview/app/form/layout.json
) -
Update Form Layout
(
/k/v1/preview/app/form/layout.json
) -
Get Form Fields
(
/k/v1/app/form/fields.json and /k/v1/preview/app/form/fields.json
) -
Add Form Fields
(
/k/v1/preview/app/form/fields.json
) -
Update Form Fields
(
/k/v1/preview/app/form/fields.json
) -
Delete Form Fields
(
/k/v1/preview/app/form/fields.json
)
-
Get App Deploy Status
(
- Relevant APIs:
- The following APIs for managing form layouts and fields will be able to get, add, or update names of Table fields:
- Related APIs:
-
Get Form Fields
(
/k/v1/app/form/fields.json
and/k/v1/preview/app/form/fields.json
) -
Add Form Fields
(
/k/v1/preview/app/form/fields.json
) -
Update Form Fields
(
/k/v1/preview/app/form/fields.json
) -
Get Form
(
/k/v1/form.json
) -
Get Form Preview
(
/k/v1/preview/form.json
)
-
Get Form Fields
(
- 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:": { // ... } } }
-
- Related APIs: