SpreadWebServcie.CreateNewAccount Method
The following example demonstrates who to add new account without verificaton of emali address.
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).
|
newAccountName
|
String
|
New account name.
|
newAccountEmail
|
String
|
New account email.
|
newAccountPassword
|
String
|
New account password.
|
Return Value
True
if succeed. Otherwise, False.
Example
string loginName = "spread@reasonables.com";
string loginPassword = "spread";
string newAccountName = "newAccount";
string newAccountEmail = "newSpreader@reasonables.com";
string newAccountPassword = "password";
SpreadWS.SpreadWebService mySpread =
new SpreadWS.SpreadWebService();
bool result = mySpread.CreateNewAccount (loginName, loginPassword,newAccountName
,newAccountEmail
,newAccountPassword );
See Also
SpreadWebService
Class | Spread Web Service Namespace