CustomFields
Return all custom fields used in the account.
テーブル固有の情報
Select
アカウントのCustom Fields を取得します。
SELECT * FROM CustomFields
Custom Fields をタイプ別で取得することもできます。
SELECT * FROM CustomFields WHERE type = 'deal'
Insert
新しいCustom Fields の追加には、Label を指定します。'party' タイプのCustom Fields のみが作成できます。
INSERT INTO CustomFields (Label) VALUES ('My new Custom Field')
Update
フィールドのLabel には、Id を指定します。
UPDATE CustomFields SET Label = 'Test' WHERE Id = '4321'
Delete
Custom Fields の削除には、Id を指定します。
DELETE FROM CustomFields WHERE Id = '4321'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Integer | True |
The unique identifier of the custom field. | |
Label | String | False |
The label for the custom field. | |
Type | String | True |
The type for the custom field. 使用できる値は次のとおりです。party, deal |