NMCSegments
Create, update, delete, and query New Marketing Campaign Segments in SendGrid.
テーブル固有の情報
NMC プレフィックスは、New Marketing Campaign の略です。
Select
すべてのセグメントの取得、またはId でのフィルタが可能です。
SELECT * FROM NMCSegments WHERE Id = '1'
Insert
特定の抽出条件によってセグメントはNMCContacts を分割できます。これらの抽出条件を指定するには、QueryDSL フィルタを使用します。
INSERT INTO NMCSegments (Name, QueryDSL) VALUES ("New Segment", "Segment Cdata", "first_name LIKE '%test%'"))
上記のステートメントは、値 "test" を含むFirstName を持つNMCContacts を含んだNMCSegments を作成します。
Update
名前またはコンディションを更新することができます。すべてのセットが上書きされるので、フルセットを指定してください。
UPDATE NMCSegments SET Name = "Name Updated", QueryDSL = "first_name LIKE '%test update%'" WHERE Id = '123'
Delete
Id でのみNMCSegments を削除できます。
DELETE FROM NMCSegments WHERE Id = '123'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
The Id of the segment. | |
Name | String | False |
The name of the segment. | |
ParentListId | String | False |
The Id of the list associated with the segment. | |
ContactsCount | Integer | True |
The recipient count of the segment. | |
CreatedAt | Datetime | True |
Field name for the first condition. | |
SampleUpdatedAt | Datetime | False |
Field name for the first condition. | |
UpdatedAt | Datetime | True |
Field name for the first condition. | |
QueryDSL | String | False |
Field name for the first condition. | |
NextSampleUpdate | Datetime | True |
The last updated samples date. |