Prolateral Consulting Ltd
Prolateral Consulting Ltd
Support
Support
Knowledgebase Articles
Help
Setup examples
Support

Prolateral offers primary and backup domain (DNS) services, with servers in key geographic locations providing the best service possible.

Problem

How do I retreive a Client's (end-user) details from under my Partner account using the Partner API?
Getting (API GET) a clients details using the RESTful Partner API based on on client id?

Solution

The following example of code shows you how to GET a client's (end-users) details under your partner account based on an internal id.

Note, if you want to fetch a clients details based on their external id then use the end point /clients and not /clients/{id}

Prerequisites

To use the Partner API you must meet the following criteria

  • Have a working development environment.
  • Have an active Partner account. If you need a partner account you can sign up here.
  • Enabled your account to use the API and set the access controls.
  • Have valid API Credentials.
  • Optional - Setup your development environment to initially use the Sandbox Testing Portal.

For Partner API reference documentation please see https://portal.my-engine.com/apidocs/index.html

Example Code

The examples below use the sandbox for testing. For a production environment remember to change the following:

  • API Url
  • Partner ID
  • Partner API Key

<?php
/**
 * client-get.php
 * 
 * This example with do an API GET for a client based on a specified id.
 * 
 */
$apiPartnerId = "<PartnerID>";
$apiSecretKey = "___PartnerKey___";

$apiUrl       = "https://sandbox.my-engine.com/api-v1/clients/";

$crlf         = "<br />";

$clientIdToGet = "9987610";

// Init Curl
$curl = curl_init();

// API Authentication:
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_USERPWD, "$apiPartnerId:$apiSecretKey");

// Set Curl Options
curl_setopt($curl, CURLOPT_URL, $apiUrl . $clientIdToGet);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

// API GET
$jsonResult = curl_exec($curl);

// Check for a valid HTTP 200 success and process the returned result
// or handler the failure.
if (curl_getinfo($curl, CURLINFO_RESPONSE_CODE) == 200) {
    $result = json_decode($jsonResult, true);

    if (json_last_error() == JSON_ERROR_NONE)   {
        // We have valid Json data, so lets display the results.
        echo "ClientID = " . $result['data']["id"] . $crlf;
        echo "Active Status = " . $result['data']["active"] . $crlf;
        echo "Client Verified Status = " . $result['data']["client_status_id"] . $crlf;
        echo "Username = " . $result['data']["username"] . $crlf;
        echo "Email = " . $result['data']["email"] . $crlf;
        echo "Title = " . $result['data']["title"] . $crlf;
        echo "First = " . $result['data']["firstname"] . $crlf;
        echo "Surname = " . $result['data']["surname"] . $crlf. $crlf;
        // For a full set of fields please refer to the API Documentation
    }
    
} else {
    echo "Response Code = " . curl_getinfo($curl, CURLINFO_RESPONSE_CODE) . $crlf;
    
    $result = json_decode($jsonResult, true);
    if (json_last_error() == JSON_ERROR_NONE)   {
        echo "error = " . $result["error"]["name"] . $crlf;
        echo "url = " . $result["error"]["url"] . $crlf;
        echo "message = " . $result["error"]["message"] . $crlf;
    } else {
        echo $jsonResult;
    }
}

curl_close($curl);

/**
 * client-get.cs
 * 
 * This example with do an API GET for a client based on a specified id.
 * 
 */


using Newtonsoft.Json;
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;

namespace clients_get
{
    class Program
    {
        private const string apiPartnerId = "<PartnerID>";
        private const string apiSecretKey = "_PartnerKey_";

        private const string apiUrl = "https://sandbox.my-engine.com/api-v1/clients/";

        static async Task Main(string[] args)
        {
            // ID of the client to Get.
            // Remember this is the my-engine id, not your own id (aka external-id)
            string clientIdToGet = "9987610";

            // Create HTTP resource
            HttpClient client = new HttpClient();

            // Add an Accept header for JSON format.
            client.DefaultRequestHeaders.Add("ContentType", "application/json");

            // Set the Authorisation
            var authToken = System.Text.Encoding.UTF8.GetBytes(apiPartnerId + ":" + apiSecretKey);
            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", System.Convert.ToBase64String(authToken));

            // Do the GET request.
            HttpResponseMessage response = await client.GetAsync(apiUrl + clientIdToGet);
            if (response.IsSuccessStatusCode)
            {
                var content = response.Content.ReadAsStringAsync();

                dynamic details = JsonConvert.DeserializeObject(content.Result);
                if (details.ContainsKey("data"))
                {
                    // View the entire record
                    // Console.WriteLine("data = {0}", item);

                    // Display the data we want.
                    Console.WriteLine("ClientID = {0}", details["data"]["id"]);
                    Console.WriteLine("Active Status = {0}", details["data"]["active"]);
                    Console.WriteLine("Client Verified Status = {0}", details["data"]["client_status_id"]);
                    Console.WriteLine("Username = {0}", details["data"]["username"]);
                    Console.WriteLine("Email = {0}", details["data"]["email"]);
                    Console.WriteLine("Title = {0}", details["data"]["title"]);
                    Console.WriteLine("First = {0}", details["data"]["firstname"]);
                    Console.WriteLine("Surname = {0} \n", details["data"]["surname"]);
                }
                else
                {
                    Console.WriteLine("response = {0}", response);
                    Console.WriteLine("json response = {0}", details);
                }

            }
            else
            {
                // Get the Json Error response and convert it
                var jsonResponseStr = response.Content.ReadAsStringAsync().Result;
                dynamic jsonResponse = JsonConvert.DeserializeObject(jsonResponseStr);
                Console.WriteLine("name = {0}", jsonResponse["error"]["name"]);
                Console.WriteLine("url = {0}", jsonResponse["error"]["url"]);
                Console.WriteLine("message = {0}", jsonResponse["error"]["message"]);
                Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);
            }

            //Dispose once all HttpClient calls are complete.
            client.Dispose();
        }

    }
}


'
' client-get.vb
' 
' This example with do an API GET for a client based on a specified id.
' 
'

Imports Newtonsoft.Json
Imports System
Imports System.Net.Http
Imports System.Net.Http.Headers
Imports System.Threading.Tasks

Module Program

    Private Const apiPartnerId As String = "<PartnerID>"
    Private Const apiSecretKey As String = "_PartnerKey_"

    Private Const apiUrl As String = "https://sandbox.my-engine.com/api-v1/clients/"

    Public Sub Main(args As String())
        clientsGet().Wait()
    End Sub


    Public Async Function clientsGet() As Task
        ' ID of the client to Get.
        ' Remember this Is the my-engine id, Not your own id (aka external-id)
        Dim clientIdToGet As String = "9987610"

        ' Create HTTP resource
        Dim client As New HttpClient()

        ' Add an Accept header for JSON format.
        client.DefaultRequestHeaders.Add("ContentType", "application/json")

        ' Set the Authorisation
        Dim authToken = System.Text.Encoding.UTF8.GetBytes(apiPartnerId + ":" + apiSecretKey)
        client.DefaultRequestHeaders.Authorization = New AuthenticationHeaderValue("Basic", System.Convert.ToBase64String(authToken))

        ' Do the GET request.
        Dim response As HttpResponseMessage = Await client.GetAsync(apiUrl + clientIdToGet)
        If response.IsSuccessStatusCode Then

            Dim content = response.Content.ReadAsStringAsync()

            Dim details As Object = JsonConvert.DeserializeObject(content.Result)
            If details.ContainsKey("data") Then
                ' Display the data we want.
                Console.WriteLine("ClientID = {0}", details("data")("id"))
                Console.WriteLine("Active Status = {0}", details("data")("active"))
                Console.WriteLine("Client Verified Status = {0}", details("data")("client_status_id"))
                Console.WriteLine("Username = {0}", details("data")("username"))
                Console.WriteLine("Email = {0}", details("data")("email"))
                Console.WriteLine("Title = {0}", details("data")("title"))
                Console.WriteLine("First = {0}", details("data")("firstname"))
                Console.WriteLine("Surname = {0} {1}", details("data")("surname"), vbCrLf)
            Else
                Console.WriteLine("response = {0}", response)
                Console.WriteLine("json response = {0}", details)
            End If
        Else
            ' Get the Json Error response And convert it
            Dim jsonResponseStr = response.Content.ReadAsStringAsync().Result
            Dim jsonResponse As Object = JsonConvert.DeserializeObject(jsonResponseStr)
            Console.WriteLine("name = {0}", jsonResponse("error")("name"))
            Console.WriteLine("url = {0}", jsonResponse("error")("url"))
            Console.WriteLine("message = {0}", jsonResponse("error")("message"))
            Console.WriteLine("{0} ({1})", response.StatusCode, response.ReasonPhrase)
        End If

        'Dispose once all HttpClient calls are complete.
        client.Dispose()

    End Function

End Module




/**
 * client-get.js
 * 
 * This example with do an API GET for a client based on a specified id.
 * 
 */

var apiPartnerId = "<PartnerID>";
var apiSecretKey = "_PartnerKey_";

var apiUrl = "https://sandbox.my-engine.com/api-v1/clients/";
			  
var clientIdToGet = "9987610";

// Setup the Ajax request
var settings = {
    url: apiUrl + clientIdToGet,
    headers: {
        'Authorization': 'Basic ' + btoa(apiPartnerId + ":" + apiSecretKey),
        'cache-control': 'no-cache'
    },
    crossDomain: true,
    dataType: 'json',
    async: true,
    method: "GET"
};

// API GET
$.ajax(settings)
    .done(function(response) {
        console.log("ClientID = " + response.data.id);
        console.log("Active Status = " + response.data.active);
        console.log("Client Verified Status = " + response.data.client_status_id);
        console.log("Username = " + response.data.username);
        console.log("Email = " + response.data.email);
        console.log("Title = " + response.data.title);
        console.log("First = " + response.data.firstname);
        console.log("Surname = " + response.data.surname);
        console.log(" ");

    })
    .fail(function(request, textStatus, errorThrown) {
        try {
            var errObj = $.parseJSON(request.responseText);
            console.log("API Error - " + errObj.name);
            console.log("API Msg   - " + errObj.message);
            console.log("API url   - " + errObj.url);
        } catch (e) {
            console.log("Error - " + errorThrown);
            console.log("Status - " + request.status);
            console.log(request);
        }
    });
			  
like it, love it, then share it. Share this article on social media.

Did you enjoy this article?

Disclaimer

The Origin of this information may be internal or external to Prolateral Consulting Ltd. Prolateral makes all reasonable efforts to verify this information. However, the information provided in this document is for your information only. Prolateral makes no explicit or implied claims to the validity of this information. Any trademarks referenced in this document are the property of their respective owners.