SpreadWebServcie.GetAllSubscription Method
It gets all existing subscriptions.
public
Dataset getAllSubscription
(
string loginEmail,
string
password,
)
Parameters
Parameter
|
Type
|
Description
|
loginEmail
|
String
|
The login email of your Spread account.
|
password
|
String
|
The password of your Spread account or
API Key which you can retrieve from your Spread account (My account=> Settings).
|
Return Value
Dataset containing a single table with columns Subscription Name,
description, Status and No. of Subscribers.
Example
string
loginName
= "spread@reasonables.com";
string
loginPassword
= "spread";
Dataset
mySubscriptionsData;
//Create a SpreadWebService
object and use its method.
SpreadWebService MySpread = new
SpreadWebService();
mySubscriptionsData
= MySpread.getAllSubscription (loginName, loginPassword);
|
See Also
SpreadWebService
Class | Spread Web Service Namespace