Lists
Create, update, delete, and query the available Lists in SendGrid.
テーブル固有の情報
Select
リストテーブルはId によってのみフィルタできます。
SELECT * FROM Lists WHERE Id = '123'
Insert
テーブルへの挿入には、リストの名前のみ必要です。
INSERT INTO Lists (Name) VALUES ('TestList')
Update
Id を指定することでLists から更新できます。
UPDATE Lists SET Name = 'New Name' WHERE Id = '123'
Delete
Id を指定することでLists から削除できます。
DELETE FROM Lists WHERE Id = '123'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Integer | True |
The Id of the list. | |
Name | String | False |
The name of the list. | |
RecipientCount | Integer | True |
The recipient count of the list. |