Skip to content
Richard Birkby edited this page Mar 30, 2015 · 6 revisions

SDK examples for the RetrieveAccount endpoint.

C# Usage

var response = client.Account.RetrieveAccount();
var accountEmail = response.Email;
var accountFirstName = response.FirstName;

PHP Usage

$response = $client->Account->AccountDetails();
if($response->email != null)
{
$accountDetails = $response;
echo $accountDetails->email;
echo $accountDetails->firstName;
}
Clone this wiki locally