SpreadWebServcie.UnsubscribeEmailInAccount Method
对账号取消订阅(将会对账号下所有包含该邮箱的联系人取消订阅)
参数
参数
|
类型
|
描述
|
loginEmail
|
String
|
Spread账号的邮箱地址.
|
APIKey
|
String
|
Spread账号的密码或者 API Key which you can retrieve from your Spread account (My account=> Settings).
|
subscriberEmail
|
String
|
取消订阅的郵箱地址.
|
返回结果
Bool 如果成功,返回true。
例子
string
loginEmail = "Spread@reasonables.com";
string
APIKey = "7D2B83DF-B4A3-4E42-8D77-E6B22A1004BE";
string subscriberEmail = "Spread@reasonables.com";
SpreadAPI.SpreadWebService MySpread =
new SpreadAPI.SpreadWebService();
bool
result = MySpread.UnsubscribeEmailInAccount(loginEmail, APIKey , subscriberEmail);
参见