From OpenDCIM Wiki
Jump to: navigation, search
Line 40: Line 40:
  
 
: '''Example''' :deviceid would be the indication to substitute the last portion of the URL with a valid DeviceID
 
: '''Example''' :deviceid would be the indication to substitute the last portion of the URL with a valid DeviceID
 +
 +
 +
= Sample Script =
 +
 +
Here you'll find a sample PHP script which utilizes the CURL library to make calls to the API.  The purpose of the script is to add a single user to the database.
 +
 +
<blockquote>
 +
<pre>
 +
<?php
 +
        $c = curl_init();
 +
        curl_setopt( $c, CURLOPT_URL, $url );
 +
        curl_setopt( $c, CURLOPT_USERPWD, "dcim:dcim" );
 +
        curl_setopt( $c, CURLOPT_CUSTOMREQUEST, "PUT" );
 +
        curl_setopt( $c, CURLOPT_RETURNTRANSFER, true );
 +
 +
        // Following 2 lines are needed if you don't have a recognized CA certificate
 +
        curl_setopt( $c, CURLOPT_SSL_VERIFYPEER, false );
 +
        curl_setopt( $c, CURLOPT_SSL_VERIFYHOST, false );
 +
 +
        // Don't return the headers - we want the actual JSON data return
 +
        curl_setopt( $c, CURLOPT_HEADER, false );
 +
 +
        // The lines below here are what you would put into a loop if you were wanting to proce
 +
ss a bunch of files
 +
        // Note that the URL has the new UserID added to it at the end - it is required
 +
        $url = "https://dcim.mydomain/api/v1/people/newuser";
 +
 +
        $data = array(  "UserID" => "newuser",
 +
                        "LastName" => "User",
 +
                        "FirstName" => "API",
 +
                        "Email" => "me@domain",
 +
                        "AdminOwnDevices" => "1",
 +
                        "ReadAccess" => "0",
 +
                        "WriteAccess" => "0",
 +
                        "DeleteAccess" => "0",
 +
                        "ContactAdmin" => "0",
 +
                        "RackRequest" => "0",
 +
                        "RackAdmin" => "0",
 +
                        "SiteAdmin" => "0" );
 +
 +
        $data_string = json_encode( $data );
 +
 +
        curl_setopt( $c, CURLOPT_POSTFIELDS, $data_string );
 +
        curl_setopt( $c, CURLOPT_HTTPHEADER, array( "Content-Type: application/json", "Content-Length: " . strlen( $data_string )));
 +
 +
        $result = curl_exec( $c );
 +
 +
        $jr = json_decode( $result );
 +
        // You really should check for errors here, for example just display output
 +
        var_dump( $jr );
 +
 +
        // End of what you would have to run in a loop
 +
 +
        // Show the user what we got
 +
 +
        curl_close( $c );
 +
?>
 +
</pre>
 +
</blockquote>
  
  

Revision as of 18:40, 26 January 2016

The API was added with release 4.0.1. The wiki reflects the current status for the 4.1 release.

openDCIM has a RESTful API interface which can be accessed by other applications.

Development of the API is happening in stages, and as such this specification is subject to change. If you are unfamiliar with what a RESTful API is, a good place to start is the Wikipedia Entry.


Data Format

openDCIM data will always be returned in JSON format, with no pagination. This is open source, so if you need your output in another format, such as XML, you can modify the appropriate function in the application.

The JSON data is returned in the following format:

{

error: true or false,
errorcode: 200, if operation was a success; other dependent upon reason for failure
resultsetname (Varies depending upon request)
[{ data }]

}


Authentication

RESTful APIs by definition are stateless, but do still need some form of authentication. It is suggested that you create a separate account for the API to use, rather than piggy-backing off of an existing user account.

At a minimum, the account created for the API must have Global Read Access. Working with the inner guts of openDCIM will certainly increase the risk of data corruption, so it's not something that should be opened up lightly. If an API call requires a Specific Permission and is called by an account that does not possess that permission, an error 400 will be returned.

Base URI

Depending on how you implement your website, this may vary, but most would take on the format of:

https://myurl/api/v1 (for Version 1 of the API)

All definitions listed below will assume that they are added on to the base URI. For example, to get a list of all devices, the full URI would be https://myurl/api/v1/devices

Conventions

When listing a URI for an API call, there may occasionally be a word with a leading colon (:). This indicates that it is a parameter to be passed within the URL.

Example :deviceid would be the indication to substitute the last portion of the URL with a valid DeviceID


Sample Script

Here you'll find a sample PHP script which utilizes the CURL library to make calls to the API. The purpose of the script is to add a single user to the database.

<?php
        $c = curl_init();
        curl_setopt( $c, CURLOPT_URL, $url );
        curl_setopt( $c, CURLOPT_USERPWD, "dcim:dcim" );
        curl_setopt( $c, CURLOPT_CUSTOMREQUEST, "PUT" );
        curl_setopt( $c, CURLOPT_RETURNTRANSFER, true );

        // Following 2 lines are needed if you don't have a recognized CA certificate
        curl_setopt( $c, CURLOPT_SSL_VERIFYPEER, false );
        curl_setopt( $c, CURLOPT_SSL_VERIFYHOST, false );

        // Don't return the headers - we want the actual JSON data return
        curl_setopt( $c, CURLOPT_HEADER, false );

        // The lines below here are what you would put into a loop if you were wanting to proce
ss a bunch of files
        // Note that the URL has the new UserID added to it at the end - it is required
        $url = "https://dcim.mydomain/api/v1/people/newuser";

        $data = array(  "UserID" => "newuser",
                        "LastName" => "User",
                        "FirstName" => "API",
                        "Email" => "me@domain",
                        "AdminOwnDevices" => "1",
                        "ReadAccess" => "0",
                        "WriteAccess" => "0",
                        "DeleteAccess" => "0",
                        "ContactAdmin" => "0",
                        "RackRequest" => "0",
                        "RackAdmin" => "0",
                        "SiteAdmin" => "0" );

        $data_string = json_encode( $data );

        curl_setopt( $c, CURLOPT_POSTFIELDS, $data_string );
        curl_setopt( $c, CURLOPT_HTTPHEADER, array( "Content-Type: application/json", "Content-Length: " . strlen( $data_string )));

        $result = curl_exec( $c );

        $jr = json_decode( $result );
        // You really should check for errors here, for example just display output
        var_dump( $jr );

        // End of what you would have to run in a loop

        // Show the user what we got

        curl_close( $c );
?>


Structures

Below are the data structures that can be references and/or modified through use of the API. Detailed information on the API methods are available within the individual pages. In some cases, methods may be referenced in more than one location.

People

People refers to the entity that encompasses both users of openDCIM and the contacts that are associated with devices. Prior to version 4.x these were two separate entities, but due to the confusion around when to use which, they were merged into a single database table.

Department

Department refers to the entity in openDCIM that is assigned ownership of devices and cabinets. We restrict the ownership to departments because people are transitory - even if they don't leave the company, they can often change duties, while departments are much more static.


Data Centers

Data Centers are parent structures for housing Cabinets, which can then house devices.

Cabinets

Cabinets must belong to a Data Center, and contain devices, sensors, and CDUs.

Devices

/device
Method GET
Parameters none
Specific Permission Required none

This URI will return a collection of all devices defined within openDCIM. There is a corresponding Entity URL for retrieving a single entity.


/device/byowner/:departmentid
Method GET
Parameters DepartmentID
Specific Permission Required none

This URI will return a collection of all devices, if any, that are defined within openDCIM as belonging to the specified DepartmentID.

/device/bydatacenter/:datacenterid
Method GET
Parameters DataCenterID
Specific Permission Required none

This URI will return a collection of all devices, if any, that are defined within openDCIM as belonging to the specified DataCenterID.


/device/bycabinet/:cabinetid
Method GET
Parameters CabinetID
Specific Permission Required none

This URI will return a collection of all devices, if any, that are defined within openDCIM as belonging to the specified CabinetID.