November 23, 2017


GetApiKeyForUsers.php

GetApiKeyForUsers.php
<?php
/**
 * Add Api Authentication Keys for users
 * 
 * This script adds api authentication keys for usernames specified in $users array. A user can only 
 * have a single authentication key.
 *
 * Important manual pages:
 * @see http://sldn.softlayer.com/reference/services/SoftLayer_User_Customer/addApiAuthenticationKey
 * @see http://sldn.softlayer.com/reference/services/SoftLayer_Account/getUsers
 * @see http://sldn.softlayer.com/article/Object-Filters
 *
 * @license <http://sldn.softlayer.com/article/License>
 * @author SoftLayer Technologies, Inc. <sldn@softlayer.com>
 */

require_once ("C:/PhpSoftLayer/SoftLayer/SoftLayer/SoapClient.class.php");

/**
 * SoftLayer API username
 * @var string
 */
$username = "set me";

/**
 * SoftLayer API key
 * @var string
 */
$apiKey = "set me";

/**
 * Declare the usernames to add Api Authentication Keys.
 * @var array()
 */
$users = array("user1", "user2", "user3");

/*
 * Create SoftLayer API client object for
 * SoftLayer_User_Customer_CustomerPermission_Permission, SoftLayer_Account and SoftLayer_User_Customer
 */
$customerPermission = SoftLayer_SoapClient::getClient("SoftLayer_User_Customer_CustomerPermission_Permission", null, $username, $apiKey);
$account = SoftLayer_SoapClient::getClient("SoftLayer_Account", null, $username, $apiKey);
$userCustomer = SoftLayer_SoapClient::getClient("SoftLayer_User_Customer", null, $username, $apiKey);

// Declare an object filter, to retrieve users with the specific username specified in "$users" array.
$filter = new stdClass();
$filter -> users = new stdClass();
$filter -> users -> username = new stdClass();
$filter -> users -> username -> operation = "in";
$filter -> users -> username -> options = array();
$filter -> users -> username -> options[0] = new stdClass();
$filter -> users -> username -> options[0] -> name = "data";
$filter -> users -> username -> options[0] -> value = $users;
$account -> setObjectFilter($filter);

// Get Users
$receiptUsers = $account -> getUsers();

for ($i = 0; $i <= sizeof($receiptUsers) - 1; $i++) {
    // Set init parameters for the user which the api authentication key will be added.
    $userCustomer -> setInitParameter($receiptUsers[$i] -> id);
    try {
        $result = $userCustomer -> getApiAuthenticationKeys();
        // Print the result
        print_r("The Api Key for user " . $receiptUsers[$i] -> username . " is: " . $result[0] ->  authenticationKey. "\n");
    } catch(Exception $e) {
        echo "Unable to get Api Key for ".$receiptUsers[$i] -> username .": " . $e -> getMessage() ."\n";
    }
}

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue