ListMemberNotes
The last 10 notes for a specific list member, based on date created.
テーブル固有の情報
ListMemberNotes ではSELECT、INSERT、UPDATE、およびDELETE がサポートされています。
Select
このテーブルからデータを取得するにはListId とEmailId を指定する必要があります。WHERE 句に何も指定されていない場合は、アカウントで使える最初のものが使用されます。
Insert
INSERT の際は必要なフィールドはありません。
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | Integer | True |
The note's ID. |
| CreatedAt | Datetime | True |
The date the note was created. |
| CreatedBy | String | True |
The author of the note. |
| UpdatedAt | Datetime | True |
The date the note was last updated |
| Note | String | False |
The content of the note. |
| ListId [KEY] | String | False |
The unique id for the list. |
| MemberId [KEY] | String | False |
The MD5 hash of the list member's email address. |