login
public static string login(string userName, string password)
Authenticate the user and returns a token.
Section
Security Related Methods

Parameters
string userNameYour Benchmark Email user name
string passwordYour Benchmark Email password

Returns
stringThe token associated to the account


Examples
download example code
xmlrpc_login.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. ?>