1.3.2 • Published 22 days ago

dctrackclient v1.3.2

Weekly downloads
-
License
BSD
Repository
github
Last release
22 days ago

dcTrackClient GitHub Workflow Status PyPI PyPI - Downloads npm npm

Sunbird dcTrack API clients in Python and JavaScript

Installation

dcTrackClient can be installed from the package manager of your choice.

Python

pip install dcTrackClient==1.3.2

JavaScript

npm i dctrackclient@1.3.2

Initialize a connection to the dcTrack API

Authentication is by using a base URL (the same URL to access the GUI) and a username and password, or a base URL and an API token.

Python

from dcTrackClient import Client
## Using a username and password ##
api = Client('https://dctrack.example.com/', username='user', password='pass')
## Using an API token ##
api = Client('https://dctrack.example.com/', apiToken='token')

JavaScript

import { Client } from 'dctrackclient';
// Using a username and password // 
const api = new Client('https://dctrack.example.com/', { username: 'user', password: 'pass' });
// Using an API token //
const api = new Client('https://dctrack.example.com/', { apiToken: 'token' });

Advanced: Initialize a connection with a proxy

Proxies can be used for either authentication method (username/password or API token) for both libraries. For the Python library, specify an HTTP or HTTPS proxy, or both. These can also be SOCKS proxies. For the JavaScript library, only 1 proxy is required and https proxies can either be HTTP or HTTPS. HTTPS will automatically upgraded to TLS.

Python

api = Client('https://dctrack.example.com/', username='user', password='pass', httpProxy='http://proxy:port', httpsProxy='https://proxy:port')

JavaScript

const api = new Client('https://dctrack.example.com/', { username: 'user', password: 'pass' }, { https: 'http://proxy:port', socks: 'socks://proxy:port' });

Obtain an API Token

Obtain an API token using the Client.generateToken() function provided. Re-authentication is not necessary, as the API token will automatically be used in subsequent API calls. The function returns the token's value in case the user wants to store the token for the next initialization of the API.

Python

token = api.generateToken()

JavaScript

Notice the await keyword before the function call. This is because the JavaScript library is asynchronous and returns a Promise to the return value. All the API calls in this library require that keyword.

const token = await api.generateToken();

Usage Example

This section demonstrates item manipulation with the API client.

Create an item

This example shows the minimum attributes required to create an item using the createItem function. View the comprehensive list of item attributes in the official documentation. Make sure to capture the return value of this function to see the created item details, such as the unique numeric item ID, or to determine if an error occurred while creating an item.

Python

# Set `returnDetails = True` to return the complete item field list.
response = api.createItem(False, {
    'cmbLocation': 'item location',
    'tiName': 'item name',
    'cmbMake': 'item make',
    'cmbModel': 'item model'
})
print(response)

JavaScript

See the JavaScript section on obtaining an API token why the await keyword is required.

// Set `returnDetails = true` to return the complete item field list.
let response = await api.createItem(false, {
    'cmbLocation': 'item location',
    'tiName': 'item name',
    'cmbMake': 'item make',
    'cmbModel': 'item model'
});
console.log(response);

On Success

This function returns the JSON object for the newly created item. This is an example response if returnDetails was set to false.

{ "item": { "id": 1234, "tiName": "item name" } }

On Failure

This function returns a JSON object containing the error message.

Retrieve item details

This example shows the usage of the getItem function. This function requires the unique item's ID, shown in the create item example. It returns the full list of item attributes.

Python

response = api.getItem(1234)

JavaScript

let response = await api.getItem(1234);

Returns

{
    "item": {
        "cmbLocation": "item location",
        "tiName": "item name",
        ...
    }
}

Modify an existing item

This example shows the usage of the updateItem function. Any number of attributes can be included in the payload to be modified. The returnDetails parameter behaves in the same way as in the create item example.

Python

response = api.updateItem(1234, False, {'tiSerialNumber': 12345})

JavaScript

let response = await api.updateItem(1234, false, { 'tiSerialNumber': 12345 });

Search for an item

This example demonstrates usage of the searchItems function. Follow this guide for details on creating the request payload. In this example, the API searches for an item based on the tiName field.

Python

response = api.searchItems(0, 0, {
    'columns': [
        {'name': 'tiName', 'filter': {'eq': 'item name'}}
    ],
    'selectedColumns': [
        {'name': 'id'},
        {'name': 'tiName'},
    ]
})

JavaScript

let response = await api.searchItems(0, 0, {
    'columns': [
        { 'name': 'tiName', 'filter': { 'eq': 'item name' } }
    ],
    'selectedColumns': [
        { 'name': 'id' },
        { 'name': 'tiName' },
    ]
});

Returns

{
    "selectedColumns": [],
    "totalRows": 1,
    "pageNumber": 0,
    "pageSize": 0,
    "searchResults": {
        "items": [
            {"id": "1234", "tiName": "item name"}
        ]
    }
}

Delete an item

This example demonstrates usage of the deleteItem function.

Python

api.deleteItem(1234)

JavaScript

await api.deleteItem(1234);

Returns

{ "itemId": 1234 }

Official DcTrack Documentation

Visit this link for the official documentation on request bodies and attrribute names.

https://www.sunbirddcim.com/help/dcTrack/v911/API/en/Default.htm

Package Documentation

The section below shows all the functions contained within this client along with basic usage.

getItem(id)

Get item details using the item ID. Returns an Item JSON object.

GET api/v2/dcimoperations/items/{id}
ParameterType
idnumber

createItem(returnDetails, payload)

Create a new item. When returnDetails is set to true, the API call will return the full json payload. If set to false, the call returns only the "id" and "tiName".

POST api/v2/dcimoperations/items payload
ParameterType
returnDetailsboolean
payloadobject

updateItem(id, returnDetails, payload)

Update an existing item. When returnDetails is set to true, the API call will return the full json payload. If set to false, the call returns only the "id" and "tiName".

PUT api/v2/dcimoperations/items/{id} payload
ParameterType
idnumber
returnDetailsboolean
payloadobject

deleteItem(id)

Delete an item using the item ID.

DELETE api/v2/dcimoperations/items/{id}
ParameterType
idnumber

searchItems(pageNumber, pageSize, payload)

Search for items using criteria JSON object. Search criteria can be any of the fields applicable to items, including custom fields. Specify the fields to be included in the response. This API supports pagination. Returns a list of items with the specified information.

POST api/v2/quicksearch/items payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

getCabinetItems(CabinetId)

Returns a list of Items contained in a Cabinet using the ItemID of the Cabinet. The returned list includes all of the Cabinet's Items including Passive Items.

GET api/v2/items/cabinetItems/{CabinetId}
ParameterType
CabinetIdnumber

createItemsBulk(payload)

Add/Update/Delete Items.

POST api/v2/dcimoperations/items/bulk payload
ParameterType
payloadobject

getMakes()

Returns a list of makes with basic information.

GET api/v2/makes

No parameters.

createMake(payload)

Add a new Make. Returns JSON entity containing Make information that was passed in from the Request payload.

POST api/v2/makes payload
ParameterType
payloadobject

updateMake(makeId, payload)

Modify a Make. Returns JSON entity containing Make information that was passed in from the Request payload.

PUT api/v2/makes/{makeId} payload
ParameterType
makeIdnumber
payloadobject

deleteMake(makeId)

Delete a Make.

DELETE api/v2/makes/{makeId}
ParameterType
makeIdnumber

getMakesByName(makeName)

Search for a make using the make name. Returns a list of makes with basic information.

GET api/v2/dcimoperations/search/makes/{makeName}
ParameterType
makeNamestring

getModel(modelId, usedCounts)

Get Model fields for the specified Model ID. usedCounts is an optional parameter that determines if the count of Items for the specified model is returned in the response. If set to "true" the counts will be included in the response, if omitted or set to "false" the item count will not be included in the response.

GET api/v2/models/{modelId}
ParameterType
modelIdnumber
usedCountsboolean

createModel(returnDetails, proceedOnWarning, payload)

Add a new Model. Returns JSON entity containing Make information that was passed in from the Request payload. "proceedOnWarning" relates to the warning messages that are thrown in dcTrack when you try to delete custom fields that are in use. The "proceedOnWarning" value can equal either "true" or "false." If "proceedOnWarning" equals "true," business warnings will be ignored. If "proceedOnWarning" equals "false," business warnings will not be ignored. Fields that are not in the payload will remain unchanged.

POST api/v2/models payload
ParameterType
returnDetailsboolean
proceedOnWarningboolean
payloadobject

updateModel(id, returnDetails, proceedOnWarning, payload)

Modify an existing Model. Fields that are not in the payload will remain unchanged. Returns a JSON entity containing Make information that was passed in from the Request payload.

PUT api/v2/models/{id} payload
ParameterType
idnumber
returnDetailsboolean
proceedOnWarningboolean
payloadobject

deleteModel(id)

Delete a Model using the Model ID.

DELETE api/v2/models/{id}
ParameterType
idnumber

searchModels(pageNumber, pageSize, payload)

Search for models by user supplied search criteria. Returns a list of models with the "selectedColumns" returned in the payload. Search by Alias is not supported.

POST api/v2/quicksearch/models payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

getModelsByNameAndMakeID(modelName, makeId)

Search for a model using the model name and the make ID. Returns a list of models with basic information.

GET api/v2/dcimoperations/search/models/{modelName}/{makeId}
ParameterType
modelNamestring
makeIdnumber

deleteModelImage(id, orientation)

Delete a Mode Image using the Model ID and the Image Orientation, where id is the Model Id and orientation is either front or back

DELETE api/v2/models/images/{id}/{orientation}
ParameterType
idnumber
orientationstring

getConnector(connectorId, usedCount)

Get a Connector record by ID. Returns a Connector with all information including Compatible Connectors. The usedCount parameter is optional. If usedCount is true, the response will include the number of times the connector is in use by Models and Items. If false, no counts are returned. If omitted the default is false.

GET api/v2/settings/connectors/{connectorId}
ParameterType
connectorIdnumber
usedCountboolean

createConnector(payload)

Add a new Connector. Returns JSON entity containing Connector information that was passed in from the Request payload.

POST api/v2/settings/connectors payload
ParameterType
payloadobject

updateConnector(connectorId, payload)

Update an existing Connector. Returns JSON entity containing Connector information that was passed in from the Request payload.

PUT api/v2/settings/connectors/{connectorId} payload
ParameterType
connectorIdnumber
payloadobject

removeConnector(payload)

Delete one or more Connector records.

POST api/v2/settings/connectors/delete payload
ParameterType
payloadobject

searchConnectors(pageNumber, pageSize, payload)

Search for Connectors using criteria JSON object. Search criteria can be any of the fields applicable to Connector, including custom fields. Specify the fields to be included in the response. This API supports pagination. Returns a list of Connectors with the specified information.

POST api/v2/quicksearch/connectors payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

deleteConnectorImage(connectorId)

Delete a Connector Image using the Connector ID.

DELETE api/v2/settings/connectors/{connectorId}/images
ParameterType
connectorIdnumber

getDataPorts(itemId)

Use the REST API to retrieve details from all data ports on an item. If the operation was successful, a status code 200 is displayed, and the body contains the item's data port details. If the operation failed, an error code is returned.

GET api/v1/items/{itemId}/dataports
ParameterType
itemIdnumber

getDataPort(itemId, dataportId)

Use the REST API to read the details of an item's data port. To do this, specify the item and item data port ID. If the operation was successful, a status code 200 is displayed, and the body contains the item's data port details. If the operation failed, an error code is returned.

GET api/v1/items/{itemId}/dataports/{dataportId}
ParameterType
itemIdnumber
dataportIdnumber

createDataPorts(itemId, payload)

Use the REST API to create data ports for an existing item. If ports are already defined for the item because it is included in the Item Models Library, you can use the REST API to create additional ports for the item. Payload contains data port parameter details in json format. All required fields must be included.

POST api/v1/items/{itemId}/dataports payload
ParameterType
itemIdnumber
payloadobject

updateDataPort(itemId, dataportId, payload)

Update an item's data port details using the REST API. To do this, specify the item and data port ID, and provide the updated parameter value(s). Payload contains data port parameter details in json format. All required fields must be included.

PUT api/v1/items/{itemId}/dataports/{dataportId} payload
ParameterType
itemIdnumber
dataportIdnumber
payloadobject

deleteDataPort(itemId, dataportId)

Delete an item's data port using the REST API by specifying the item ID and data port ID. If the operation is successful, a status code 200 is displayed. If the operation failed, an error code is returned.

DELETE api/v1/items/{itemId}/dataports/{dataportId}
ParameterType
itemIdnumber
dataportIdnumber

getPowerPorts(itemId)

Use the REST API to retrieve details from all power ports on an item.

GET api/v1/items/{itemId}/powerports
ParameterType
itemIdnumber

getPowerPort(itemId, portId)

Use the REST API to retrieve details from one power port on an item.

GET api/v1/items/{itemId}/powerports/{portId}
ParameterType
itemIdnumber
portIdnumber

updatePowerPort(itemId, portId, proceedOnWarning, payload)

Use the REST API to create power ports for an existing item. If ports are already defined for the item because it is included in the Item Models Library, you can use the REST API to create additional ports for the item.

PUT api/v1/items/{itemId}/powerports/{portId} payload
ParameterType
itemIdnumber
portIdnumber
proceedOnWarningboolean
payloadobject

getCompatibleConnector(itemId, portId, connectorId)

Use the REST API to determine if a Connector is compatible with a specific Power Port.

GET api/v1/items/{itemId}/powerports/{portId}/connectors/{connectorId}/isCompatible
ParameterType
itemIdnumber
portIdnumber
connectorIdnumber

getBreakers(panelItemId)

Get a list of all Breakers for a given Panel Item. Returns JSON entity containing an array of all the Breakers for the specified Panel Item.

GET api/v2/dcimoperations/items/{panelItemId}/breakers
ParameterType
panelItemIdnumber

getBreaker(panelItemId, breakerPortId)

Get a list of all Breakers for a given Panel Item. Returns JSON entity containing information for a single Panel Item Breaker.

GET api/v2/dcimoperations/items/{panelItemId}/breakers/{breakerPortId}
ParameterType
panelItemIdnumber
breakerPortIdnumber

updateBreaker(panelItemId, breakerPortId, payload)

Update a single Breaker for a given Panel Item. Returns JSON entity containing information for the updated Panel Item Breaker. Note: This API performs as a true PUT and not a PATCH. Unlike with a PATCH, you must specify all attributes even if you want to change only one. Attributes that are not included in the Request will be considered as removed.

PUT api/v2/dcimoperations/items/{panelItemId}/breakers/{breakerPortId} payload
ParameterType
panelItemIdnumber
breakerPortIdnumber
payloadobject

createBreaker(panelItemId, payload)

Create a single Breaker for a given Panel Item. Returns JSON entity containing information for the created Panel Item Breaker. Note: Breaker State is set based on the connection status of the Breaker. If the breaker is connected it will always be set to "Closed", even if "Open" is specified in the Request.

POST api/v2/dcimoperations/items/{panelItemId}/breakers payload
ParameterType
panelItemIdnumber
payloadobject

deleteBreaker(panelItemId, breakerPortId)

Delete a Breaker for a given Panel Item. Returns empty JSON.

DELETE api/v2/dcimoperations/items/{panelItemId}/breakers/{breakerPortId}
ParameterType
panelItemIdnumber
breakerPortIdnumber

createBreakersBulk(panelItemId, payload)

Add/Update/Delete Breakers for a given Panel Item.

POST api/v2/dcimoperations/items/{panelItemId}/breakers/bulk payload
ParameterType
panelItemIdnumber
payloadobject

getLocations()

Returns a list for all Locations.

GET api/v1/locations

No parameters.

getLocation(locationId)

Get a single Location. Returns json containing location data for the specified ID.

GET api/v1/locations{locationId}
ParameterType
locationIdnumber

createLocation(proceedOnWarning, payload)

Add a Location. Returns the JSON entity containing location info that was passed in. Note: "proceedOnWarning" relates to the warning messages that are thrown in dcTrack when you try to delete custom fields that are in use. The "proceedOnWarning" value can equal either "true" or "false." If "proceedOnWarning" equals "true," business warnings will be ignored. If "proceedOnWarning" equals "false," business warnings will not be ignored.

POST api/v1/locations payload
ParameterType
proceedOnWarningboolean
payloadobject

updateLocation(locationId, proceedOnWarning, payload)

Modify Location details for a single Location. Payload contains new location details. You do not have have to provide all details, but only those that you want to modify. Returns JSON entity containing Location information that was passed in from the Request payload.

PUT api/v1/locations/{locationId} payload
ParameterType
locationIdnumber
proceedOnWarningboolean
payloadobject

deleteLocation(locationId)

Delete a Location.

DELETE api/v1/locations/{locationId}
ParameterType
locationIdnumber

searchLocations(pageNumber, pageSize, payload)

Search for Locations by user supplied search criteria. Returns a list of Locations with the "selectedColumns" returned in the payload.

POST api/v2/quicksearch/locations payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

getLocationFieldList()

Returns a list of all Location fields.

GET api/v2/quicksearch/locations/locationListFields

No parameters.

getSublocations(locationId)

Get all sub-locations for a given location in the hierarchy. The locationId is the ID of the location to get the sub-locations for.

GET api/v2/subLocations/list/{locationId}
ParameterType
locationIdnumber

getSublocationsOfType(locationId, typeCode)

Get all sub-locations of given type for a given location in the hierarchy. The locationId is the id of the location you are querying the sub-location types for. The type is one of either 5016 and 5017 for rows and aisles respectively.

GET api/v2/subLocations/{locationId}/type/{typeCode}
ParameterType
locationIdnumber
typeCodestring

getChildSublocations(subLocationId)

Get all child sub-locations for a given sub-location in the hierarchy. The locationId is the ID of the location to fetch the sub-locations for. The subLocationId is the ID of the parent sub-location that you are querying the children of.

GET api/v2/subLocations/{subLocationId}/children
ParameterType
subLocationIdnumber

getSublocation(subLocationId)

Get details for a given sub-location. The subLocationId is the id of the sub-location you are querying for.

GET api/v2/subLocations/{subLocationId}
ParameterType
subLocationIdnumber

createSublocation(payload)

Add a new sub-location to the given location. Returns a list from the Sub-Location Hash.

POST api/v2/subLocations payload
ParameterType
payloadobject

updateSublocation(subLocationId, payload)

Update a sub-location. Returns a list from the Sub-Location Hash.

PUT api/v2/subLocations/{subLocationId} payload
ParameterType
subLocationIdnumber
payloadobject

deleteSublocation(subLocationId)

Deletes the given sub-location. The locationId is the ID of the location that the sub-location belongs to and the subLocationId is the ID of the location you are querying. Returns a success message upon success.

DELETE api/v2/subLocations/{subLocationId}
ParameterType
subLocationIdnumber

getLocationFavorites(username)

Retrieve a List of Location Favorites for a specific User.

GET api/v2/users/{username}/favorites/LOCATION
ParameterType
usernamestring

getLocationFavoritesAllUsers()

Retrieve a List of Location Favorites for all Users. Returns JSON entity containing Location Favorite information for all users.

GET api/v2/users/favorites/LOCATION

No parameters.

updateLocationFavorites(username, payload)

Assign Location Favorites to a user where username is a valid dcTrack user and "favorite" is either true or false to indicate whether you are assigning or unassigning. JSON entity containing all Location Favorites for the specified user.

PUT api/v2/users/{username}/favorites payload
ParameterType
usernamestring
payloadobject

updateLocationFavoritesAllUsers(payload)

Assign Location Favorites to a user. To Assign favorites the "favorite" column should be set to true. To Unassign favorites the "favorite" column should be set to false. Returns JSON entity containing all Location Favorites for the specified users.

PUT api/v2/users/favorites payload
ParameterType
payloadobject

searchCabinetSpace(payload)

Find Cabinets with available space based on RUs within the specified Locations.

POST api/v2/capacity/cabinets/list/search payload
ParameterType
payloadobject

searchAvailableRUs(payload)

Find the starting RUs within a Cabinet with the specified number of contiguous RUs.

POST api/v2/items/uposition/available payload
ParameterType
payloadobject

getPermission(permissionId)

Get explicit permission by ID. Returns JSON entity containing Permission information for the specified Permission Id.

GET api/v2/permissions/explicit/{permissionId}
ParameterType
permissionIdnumber

createPermission(payload)

Add explicit permission. Returns JSON entity containing Permission information for the added Permission.

POST api/v2/permissions/explicit payload
ParameterType
payloadobject

updatePermission(permissionId, payload)

Update explicit permission. Returns JSON entity containing Permission information for the updated Permission.

PUT api/v2/permissions/explicit/{permissionId} payload
ParameterType
permissionIdnumber
payloadobject

deletePermission(permissionId)

Delete explicit permission.

DELETE api/v2/permissions/explicit/{permissionId}
ParameterType
permissionIdnumber

createPermissionsBulk(payload)

Add/Update/Delete explicit permissions.

POST api/v2/permissions/explicit/bulk payload
ParameterType
payloadobject

getPermissions()

Get all explicit permissions. Returns JSON entity containing Permission information.

GET api/v2/permissions/explicit

No parameters.

getPermissionsByEntityType(entityType)

Get explicit permissions by Entity Type. Returns JSON entity containing Permission information.

GET api/v2/permissions/explicit/entityType/{entityType}
ParameterType
entityTypestring

getPermissionsByEntityId(entityType, entityId)

Get explicit permissions by Entity Type and Entity ID. Returns JSON entity containing Permission information.

GET api/v2/permissions/explicit/{entityType}/{entityId}
ParameterType
entityTypestring
entityIdnumber

getRecords(listType, id)

Get a list of records (options) for use in drop-down lists by indicating a list type and an ID. ID is optional for some list types. Returns a list of records for a given list type.

GET api/v2/dcimoperations/lookups/{listType}/{id}
ParameterType
listTypestring
idnumber

getPicklistOptions(listType)

Get a list of records (options) for use in drop-down lists for dcTrack standard fields by list type. Returns a list of records for a given list type.

GET api/v2/dcimoperations/picklists/{listType}
ParameterType
listTypestring

updatePicklistOptions(listType, payload)

Update a list of records (options) for use in drop-down lists for dcTrack standard fields by list type. Returns a list of records for a given list type.

PUT api/v2/dcimoperations/picklists/{listType} payload
ParameterType
listTypestring
payloadobject

updateDefaultValue(payload)

Update the default value for a picklist field.

PUT api/v2/settings/lists/defaultValue payload
ParameterType
payloadobject

getFieldProperties(entity)

Get the properties for all fields applicable to the Entity.

GET api/v2/settings/lists/fieldProperties
ParameterType
entitystring

submitRequest(id, payload)

Create a request.

PUT api/v2/dcimoperations/items/{id} payload
ParameterType
idnumber
payloadobject

deleteRequest(requestId)

Cancel a request. Returns Returns request ID canceled.

DELETE api/v2/dcimoperations/requests/{requestId}
ParameterType
requestIdnumber

completeRequest(requestId, payload)

Change request status/stage to Complete using the request ID. Optionally, pass a request body with additional information. Returns request status information.

PUT api/v2/dcimoperations/requests/complete/{requestId} payload
ParameterType
requestIdnumber
payloadobject

completeWorkOrder(workOrderId, payload)

Complete work order and change work order status/stage to Complete. Optionally, pass a request body with additional information. Returns work order status information.

PUT api/v2/dcimoperations/workorders/complete/{workOrderId} payload
ParameterType
workOrderIdnumber
payloadobject

getRequestStatusByItem(itemId)

Get a list of pending request status information for a given item ID. Returns list of request status.

GET api/v2/dcimoperations/requests/pending/{itemId}
ParameterType
itemIdnumber

getRequest(requestId)

Get request status information for a given request ID. Returns full request status information.

GET api/v2/dcimoperations/requests/status/{requestId}
ParameterType
requestIdnumber

searchRequests(payload)

Get request status information for a given request ID. Returns full request status information.

POST api/v2/dcimoperations/search/list/requests payload
ParameterType
payloadobject

createDataConnection(payload)

Create a data connection. Returns the newly created data connection.

POST api/v2/connections/dataconnections payload
ParameterType
payloadobject

updateDataConnection(connectionId, payload)

Edit a data connection. Returns the newly edited data connection.

PUT api/v2/connections/dataconnections/{connectionId} payload
ParameterType
connectionIdnumber
payloadobject

getDataConnection(connectionId)

Get a data connection and associated details. Requires the ID of the connection you want to retrieve. Returns the requested data connection and associated details.

GET api/v2/connections/dataconnections/{connectionId}
ParameterType
connectionIdnumber

getDataConnectionByNode(location, itemName, portName)

Get data connection details based on the specified location, item name, and port name. The itemName specified in the URL must be either the starting or ending Item in the connection. This API does not support Data Panel Ports. Returns the JSON payload with the requested data connection details.

GET api/v2/connections/dataconnections
ParameterType
locationstring
itemNamestring
portNamestring

deleteDataConnection(connectionId)

Deletes the specified data connection.

DELETE api/v2/connections/dataconnections/{connectionId}
ParameterType
connectionIdnumber

createPowerConnection(payload)

Create a power connection. Returns the newly created power connection.

POST api/v2/connections/powerconnections payload
ParameterType
payloadobject

updatePowerConnection(connectionId, payload)

Edit a power connection. Returns the newly edited power connection.

PUT api/v2/connections/powerconnections/{connectionId} payload
ParameterType
connectionIdnumber
payloadobject

getPowerConnection(connectionId)

Get a power connection and associated details. Requires the ID of the connection you want to retrieve. Returns the requested power connection and associated details.

GET api/v2/connections/powerconnections/{connectionId}
ParameterType
connectionIdnumber

getPowerConnectionByNode(location, itemName, portName)

Get power connection details based on the specified location, item name, and port name. Returns the JSON payload with the requested power connection details.

GET api/v2/connections/powerconnections
ParameterType
locationstring
itemNamestring
portNamestring

deletePowerConnection(connectionId)

Deletes the specified power connection. Deletes the power connection.

DELETE api/v2/connections/powerconnections/{connectionId}
ParameterType
connectionIdnumber

getCircuit(circuitType, location, itemName, portName)

Get power or data circuit details based on the specified circuit type location, item name, and port name. Returns the JSON payload with the requested power or data connection details.

GET api/v2/dcimoperations/circuits/{circuitType}
ParameterType
circuitTypestring
locationstring
itemNamestring
portNamestring

retrievePowerChain(locationId, payload)

Get links and nodes of entire power chain with customizable node details for a specific location. JSON entity containing data for the entire Power Chain for a given Location. The example below illustrates returning all fields by leaving the "selectedColumn" array empty. To limit the columns in the response, list the specific columns.

POST api/v2/powerChain/{locationId} payload
ParameterType
locationIdnumber
payloadobject

retrievePowerSumForPorts(payload)

Get power sum for power ports with port ID list.

POST api/v2/powerChain/powerSum/bulk payload
ParameterType
payloadobject

retrievePowerSumForItems(payload)

Get power sum for power ports using item ID list.

POST api/v2/items/powerSum/bulk payload
ParameterType
payloadobject

getActualReadingsByItem(itemId)

Update Actual Readings for Power Ports for an Item.

GET api/v2/powerChain/items/actualReadings/{itemId}
ParameterType
itemIdnumber

retrieveActualReadingsByItems(payload)

Retrieve Actual Readings for Power Ports for multiple Items.

POST api/v2/powerChain/items/actualReadings/bulk payload
ParameterType
payloadobject

retrieveActualReadingsByPorts(payload)

Update Actual Readings for Power Ports on one or more items.

POST api/v2/powerChain/ports/actualReadings/bulk payload
ParameterType
payloadobject

updateActualReadingsByPort(portId, payload)

Update Actual Readings By Port.

PUT api/v2/powerChain/ports/actualReadings/{portId} payload
ParameterType
portIdnumber
payloadobject

getActualReadingsByPort(portId)

Get Actual Readings By Port.

GET api/v2/powerChain/ports/actualReadings/{portId}
ParameterType
portIdnumber

updateActualReadingsByPortBulk(itemId, portName, portId, payload)

Update Actual Readings for Power Ports on one or more items. Returns JSON entity containing Power Readings for each updated Power Port.

PUT api/v2/items/{itemId}/actualReadings/{portName}/{portId} payload
ParameterType
itemIdnumber
portNamestring
portIdnumber
payloadobject

getActualReadingsByPortBulk(itemId, portName, portId)

Get Actual Readings for Power Ports on one or more items. Returns JSON entity containing Power Readings for each Power Port.

GET api/v2/items/{itemId}/actualReadings/{portName}/{portId}
ParameterType
itemIdnumber
portNamestring
portIdnumber

getTicket(ticketId)

Get Ticket by Ticket ID.

GET api/v2/tickets/{ticketId}
ParameterType
ticketIdnumber

createTicket(payload)

Create a Ticket.

POST api/v2/tickets payload
ParameterType
payloadobject

updateTicket(ticketId, payload)

Update a Ticket.

PUT api/v2/tickets/{ticketId} payload
ParameterType
ticketIdnumber
payloadobject

deleteTicket(ticketId, proceedOnWarning)

Delete Ticket by Ticket ID.

DELETE api/v2/tickets/{ticketId}
ParameterType
ticketIdnumber
proceedOnWarningboolean

searchTickets(pageNumber, pageSize, payload)

Search for Tickets using criteria JSON object. Search criteria can be any of the fields applicable to Tickets, including custom fields. Specify the fields to be included in the response. This API supports pagination. Returns a list of Tickets with the specified information.

POST api/v2/quicksearch/tickets payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

getTicketFieldList()

Returns a list of all Ticket fields.

GET api/v2/quicksearch/tickets/ticketListFields

No parameters.

createTicketsBulk(payload)

Add/Update/Delete Tickets in Bulk. The body of the Request should contain the required fields required to perform the specified Method.

POST api/v2/tickets/bulk payload
ParameterType
payloadobject

createTicketAssignment(entityType, payload)

Assign Item to Ticket. The entity Ids provided in the Request should be the ID of the entity to be assigned to the Ticket.

POST api/v2/tickets/assignment/{entityType}/assign payload
ParameterType
entityTypestring
payloadobject

removeTicketAssignment(entityType, payload)

Unassign Item from Ticket. This API will disassociate multiple Items or Circuits from a Ticket. The Ids provided in the Request should be the IDs of the assignment records.

POST api/v2/tickets/assignment/{entityType}/unassign payload
ParameterType
entityTypestring
payloadobject

createCustomField(payload)

Creates a custom field. Returns the newly created custom field.

POST api/v2/settings/lists/customFields payload
ParameterType
payloadobject

updateCustomField(customFieldId, payload)

Update the definitions of the specified custom fields. Returns the updated custom field definitions.

PUT api/v2/settings/lists/customFields/{customFieldId} payload
ParameterType
customFieldIdnumber
payloadobject

getCustomFields(orderPickListsBy)

Get a list of custom fields. Returns a list of all custom fields.

GET api/v2/settings/lists/customFields
ParameterType
orderPickListsBystring

getCustomField(customFieldId, orderPickListsBy)

Get the custom field details for a given customFieldId. Passing a -1 value will return all the labels with null values. Returns a list of custom field details for the specified custom field.

GET api/v2/settings/lists/customFields/{customFieldId}
ParameterType
customFieldIdnumber
orderPickListsBystring

deleteCustomField(customFieldId, proceedOnWarning)

Deletes the specified custom field and associated pick lists.

DELETE api/v2/settings/lists/customFields/{customFieldId}
ParameterType
customFieldIdnumber
proceedOnWarningboolean

getWebhook()

Returns the current Webhook configuration information.

GET api/v2/notifications/config

No parameters.

updateWebhook(payload)

Update the Webhook configuration information.

PUT api/v2/notifications/config payload
ParameterType
payloadobject

deleteWebhook()

Deletes the Webhook configuration.

DELETE api/v2/notifications/config

No parameters.

getRelationship(id)

Get Relationship details using the Relationship ID.

GET api/v2/relationship/{id}
ParameterType
idnumber

createRelationship(payload)

Create a new entity link. Returns the newly created item JSON object. Note: Supported entity Types are "PROJECT", "TICKET", "ITEM".

POST api/v2/relationship payload
ParameterType
payloadobject

getRelationshipByEntity(entityType, entityId)

Search for Entity Links BY Entity Type and Entity ID. Entity Types are "PROJECT", "ITEM". Returns a Project JSON object.

GET api/v2/relationship/{entityType}/{entityId}
ParameterType
entityTypestring
entityIdnumber

searchRelationships(payload)

Search for Entity Links. Returns an array of Relationship links for the entity type.

POST api/v2/relationship/search payload
ParameterType
payloadobject

deleteRelationship(id)

Delete an Entity Link using the Relationship ID.

DELETE api/v2/relationship/{id}
ParameterType
idnumber

getFloormapConfig(locationId)

Get floormap configuration for specific location.

GET api/v2/visualization/floormaps/configuration/{locationId}
ParameterType
locationIdnumber

getFloormapConfigs()

Get floormap configuration for all locations.

GET api/v2/visualization/floormaps/configuration

No parameters.

updateFloormapConfig(locationId, payload)

Modify floormap configuration for specific location.

PUT api/v2/visualization/floormaps/configuration/{locationId} payload
ParameterType
locationIdnumber
payloadobject

createFloormapConfigsBulk(payload)

Modify floormap configurations for multiple locations.

POST api/v2/visualization/floormaps/configuration/bulk payload
ParameterType
payloadobject

createProject(payload)

Add a new Project. JSON entity containing Project information that was passed in from the Request payload.

POST api/v2/dcimoperations/projects payload
ParameterType
payloadobject

updateProject(id, payload)

Modify a Project. JSON entity containing Project information that was passed in from the Request payload.

PUT api/v2/dcimoperations/projects/{id} payload
ParameterType
idnumber
payloadobject

deleteProject(id)

Delete a Project using the Project ID.

DELETE api/v2/dcimoperations/projects/{id}
ParameterType
idnumber

getProject(id)

Get Project details using the Project ID. Returns a Project JSON object.

GET api/v2/dcimoperations/projects/{id}
ParameterType
idnumber

createPartClass(payload)

Create Part Classes. Returns JSON entity containing data for the created Part Class.

POST api/v2/parts/classes payload
ParameterType
payloadobject

updatePartClass(classId, payload)

Update Part Classes. Returns JSON entity containing data for the updated Part Class.

PUT api/v2/parts/classes/{classId} payload
ParameterType
classIdnumber
payloadobject

deletePartClass(classId)

Delete Part Class by Class ID.

DELETE api/v2/parts/classes/{classId}
ParameterType
classIdnumber

getPartClasses()

Returns a list of Part Classes with basic information.

GET api/v2/parts/classes

No parameters.

createPartClassesBulk(payload)

Create, Update, Delete Part Classes in Bulk. Returns JSON entity containing a list of response codes.

POST api/v2/parts/classes/bulk payload
ParameterType
payloadobject

createPartModel(payload)

Create Part Model. Returns JSON entity containing data for the created Part Model.

POST api/v2/partModels payload
ParameterType
payloadobject

updatePartModel(modelId, payload)

Update a Part Model. Returns JSON entity containing data for the Updated Part Model.

PUT api/v2/partModels/{modelId} payload
ParameterType
modelIdnumber
payloadobject

deletePartModel(modelId)

Delete Part Model by Model ID.

DELETE api/v2/partModels/{modelId}
ParameterType
modelIdnumber

getPartModel(modelId)

Get Model by Model ID. Returns JSON entity containing data for a single Model.

GET api/v2/partModels/{modelId}
ParameterType
modelIdnumber

searchPartModels(pageNumber, pageSize, payload)

Search for Part Models using criteria JSON object. Search criteria can be any of the fields applicable to Part Models, including custom fields. Specify the field to be included in the response. This API supports pagination. Returns a list of Part Models with the specified information.

POST api/v2/quicksearch/parts/models payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

deletePartModelImage(modelId)

Delete a Part Model Image using the Part Model ID.

DELETE api/v2/partModels/images/{modelId}
ParameterType
modelIdnumber

createPartModelsBulk(payload)

Create, Update, Delete Part Models in Bulk. Returns JSON entity containing a list of response codes.

POST api/v2/partModels/bulk payload
ParameterType
payloadobject

getPartModelFieldList()

Returns a list of all Part Model fields.

GET api/v2/quicksearch/parts/partModelListFields

No parameters.

createPart(payload)

Create Part Instance. Returns JSON entity containing data for the created Part Instance.

POST api/v2/parts payload
ParameterType
payloadobject

getPart(partId)

Get Part Instance by Part ID. Returns JSON entity containing data for a single Part Instance.

GET api/v2/parts/{partId}
ParameterType
partIdnumber

updatePart(partId, payload)

Update Part Instance. Returns JSON entity containing data for a single Part Instance.

PUT api/v2/parts/{partId} payload
ParameterType
partIdnumber
payloadobject

deletePart(partId)

Delete Part Instance. JSON entity containing errors and warnings.

DELETE api/v2/parts/{partId}
ParameterType
partIdnumber

createPartsBulk(payload)

Create, Update, Delete Part Instances in Bulk. Returns JSON entity containing a list of response codes.

POST api/v2/parts/bulk payload
ParameterType
payloadobject

updateStock(partId, activity, payload)

Adjust or Transfer Stock where "activity" can be "adjust" or "transfer". Returns JSON entity containing data for the transaction performed.

PUT api/v2/parts/{partId}/stock/{activity} payload
ParameterType
partIdnumber
activitystring
payloadobject

createPartAssignment(assignmentType, payload)

Assign Parts to Items or Item Ports where "assignmentType" can be "ITEMS" or "PORTS". Returns JSON entity containing data for the assignment.

POST api/v2/parts/assignments/{assignmentType} payload
ParameterType
assignmentTypestring
payloadobject

getPartFieldList()

Returns a list of all Part fields.

GET api/v2/quicksearch/parts/partListFields

No parameters.

searchParts(pageNumber, pageSize, payload)

Search for Parts using criteria JSON object. Search criteria can be any of the fields applicable to Parts, including custom fields. Specify the field to be included in the response. This API supports pagination. Returns a list of Parts with the specified information.

POST api/v2/quicksearch/parts payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject

getPartTransactionFieldList()

Returns a list of all Part Transaction fields.

GET api/v2/quicksearch/parts/partTransactionListFields

No parameters.

searchPartTransactions(pageNumber, pageSize, payload)

Search for Part Transactions using criteria JSON object. Search criteria can be any of the fields applicable to Part Transactions, including custom fields. Specify the field to be included in the response. This API supports pagination. Returns a list of Part Transactions with the specified information.

POST api/v2/quicksearch/parts/transactions payload
ParameterType
pageNumbernumber
pageSizenumber
payloadobject
1.3.2

22 days ago

1.3.1

22 days ago

1.3.0

22 days ago

9.1.1

22 days ago

1.2.2

1 month ago

0.0.1-security

1 month ago

1.2.1

5 months ago

1.2.0

5 months ago

1.1.4

6 months ago

1.1.1

7 months ago

1.0.2

8 months ago

1.1.0

7 months ago

1.0.1

8 months ago

1.0.0

8 months ago

1.0.5

7 months ago

1.1.3

7 months ago

1.0.4

7 months ago

1.1.2

7 months ago

1.0.3

8 months ago

0.9.0

8 months ago

0.8.1

8 months ago

0.7.2

9 months ago

0.8.0

9 months ago

0.7.1

10 months ago

0.9.1

8 months ago

0.7.0

11 months ago

0.6.2

12 months ago

0.6.1

12 months ago

0.6.0

12 months ago

0.5.2

1 year ago

0.5.1

1 year ago

0.5.0

1 year ago

0.4.4

1 year ago

0.4.3

1 year ago

0.4.2

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago