Skip to content

Instantly share code, notes, and snippets.

@underscorephil
Created November 27, 2013 15:32
Show Gist options
  • Save underscorephil/7677654 to your computer and use it in GitHub Desktop.
Save underscorephil/7677654 to your computer and use it in GitHub Desktop.
<?php
include('softlayer-api-php-client/SoftLayer/SoapClient.class.php');
$apiUsername = '';
$apiKey = '';
$client = SoftLayer_SoapClient::getClient('SoftLayer_Account', null, $apiUsername, $apiKey);
$client->setObjectMask("mask.users.userStatus");
$users = $client->getObject();
print_r($users);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment