update_field
Modify existing field configurations in Kintone applications by updating properties like labels, types, and requirements. Cannot update system field types such as CREATOR or RECORD_NUMBER.
Instructions
既存のkintoneフィールドの設定を更新します。 注意: システムフィールドタイプ(CREATOR, MODIFIER, RECORD_NUMBER, CREATED_TIME, UPDATED_TIME)は更新できません。 例: { "app_id": 123, "field_code": "text_field", "field": { "type": "SINGLE_LINE_TEXT", "code": "text_field", "label": "更新後のラベル", "required": true } }
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | アプリID | |
| field_code | Yes | 更新対象のフィールドコード | |
| field | Yes | 更新後のフィールド設定 | |
| revision | No | アプリのリビジョン番号(省略時は-1で最新リビジョンを使用) |