signupFormUpdate
public static boolean signupFormUpdate(string token, SignupFormDataStructure signupForm)
Update an existing SignUp Form based on the details provided. Return Boolean value true if SignupForm updated.
Section
Signup Form Related Methods

Parameters
string tokenA valid token for your account. To generate a token, use the login method.
string signupFormIDID of the signupform which you want to update.
array signupFormThe array containing the signup Form details.
string nameThis will only be seen by you and is used to organize your signUpForm.
ContactListStructure[] listsContact Lists id for which you want to create signupForm
string introductionIntroduction phrase for your signupForm
string titleTitle which will appear on the signupForm
string logoThe logo image path which you want to show as your mark

Returns
stringReturns true if SignupForm updated else false.


Examples
download example code
xmlrpc_signupFormUpdate.php


  1. <?php
  2. /**
  3. This Example shows how to authenticate a user using XML-RPC.
  4. Note that we are using the PEAR XML-RPC client and recommend others do as well.
  5. **/
  6. require_once 'XML/RPC2/Client.php';
  7. require_once 'inc/config.php';
  8. $client = XML_RPC2_Client::create($apiURL);
  9. $token = $client->login($apiLogin, $apiPassword);
  10.  
  11. $signupForm['name'] = 'March28 2011SignUpForm1';
  12. $signupForm['title'] = 'Do you eat out regularly';
  13. $signupForm['introduction'] = 'Never';
  14. $contactData[0]['id']='1001';
  15. $contactData[1]['id']='1002';
  16. $signupForm['list'] = $contactData;
  17. $singupForm['logo']='/logo/SignupLogo.gif';
  18. $signupFormID='484';
  19. $retVal = $client->signupFormUpdate($token, $signupFormID,$singupForm);
  20. ?>