Add
Attributes.Retrieve
Lists.Retrieve
Remove
Retrieve
Statistics
Unsubscribe
Update
Upsert
購読者を更新し、ステータスを返します。
Update(1)
| 序数 | 型 | 説明 | |
|---|---|---|---|
| 1 | string | 必須 |
このサンプルコードは、現在存在する購読者を更新します。
1var subscriber = {
2 "EmailTypePreference": "HTML",
3 "Attributes":{"First Name": "Test", "Last Name": "User"}
4};
5
6var subObj = Subscriber.Init("SubKey");
7var status = subObj.Update(subscriber);