Skip Navigation Links.
展开 最小化

SpreadWebServcie.GetSubscriberDetail Method

獲取訂閱者詳細信息 (登入你的Spread賬號 -> 我的賬號 -> 应用程序接口 ->允許 獲取訂閱者信息 )

參數

參數

類型

描述

loginEmail

String

Spread賬號的登錄郵箱.

APIKey

String

Spread賬號的密碼或者. API Key which you can retrieve from your Spread account (My account=> Settings).

subscriber_email

String

查询的账号类型, 邮件, 短信, WhatsApp

返回結果

Dataset 包含一個單表,行: email address, first name, middle name, last name, job title, company name, home phone, address1, address2, address3, city, state, country, postal code, sub postal code, fax, web url, title, gender, date1, date2, custom field1, custom field2, custom field3, custom field4, custom field5, custom field6, custom field7, custom field8, custom field9, custom field10, custom field11, custom field12, custom field13, custom field14, custom field15, status.

例子

string loginEmail = "Spread@reasonables.com";

string APIKey = "TEST0000-TEST-0000-TEST-0000TEST0000";

string subscriber_email = "Spread@reasonables.com";

SpreadAPI.SpreadWebService MySpread = new SpreadAPI.SpreadWebService();

DataSet result = MySpread.GetSubscriberDetail(loginEmail, APIKey , subscriber_email);

Dim loginEmail As String = "Spread@reasonables.com"

Dim APIKey As String = "TEST0000-TEST-0000-TEST-0000TEST0000"

Dim subscriber_email As String = "Spread@reasonables.com"

Dim MySpread As New SpreadAPI.SpreadWebService

Dim result As DataSet = MySpread.GetSubscriberDetail(loginEmail, APIKey, subscriber_email)

    /**
    * @name     GetSubscriberDetail
    * @function get subscriber detail
    * @param
    *  subscriber_email	the email of subscriber to be got.
    * @return
    *          dataset.
    */
    public function GetSubscriberDetail($loginEmail,$APIKey,$subscriber_email){
        $array = array(
	        'loginEmail'        => $loginEmail,
	        'APIKey'	    => $APIKey,
	        'subscriber_email'  => $subscriber_email

        );
        $Client=new SoapClient("http://service.rspread.com/Service.asmx?WSDL");
        return $Client -> GetSubscriberDetail( $array );
    }

         
No sample.

參見