Skip to main content
Version: 24.3

Bulk API Endpoint

This article provides an overview of the Bulk API endpoint.

Overview

These samples will help guide the usage of the Bulk API endpoint. The Digital.ai Agility Rest API is our original and most general purpose endpoint for querying and manipulating of Digital.ai Agility assets. As with any endpoint or software tool in general, its scope of functionality can be robust but could have some limitations. One limitation with Rest API is that it cannot perform bulk updates without and is bound to a single operation at a time.

For example, let's say I have 50,000 messages that I would like to delete. The traditional way to delete these assets would be create a script that reads the OIDS of 50,000 messages that you would like to delete and process them one at a time. Using the Rest-API or VersionOne .Net SDK, a deletion of this magnitude would take approximately 11-13 hours since we are force to repeat the following chunk of pseudo code.

This testing was performed in a hosted Digital.ai Agility environment and latency will like be reduced in local Digital.ai Agility installations.

OID oidList = getOidsToDelete(queryCriteria);
for each (OID x in oidList){
deleteOid(x); //Called 50,000 times!!!
}

The complexity of the client code is very linear and network intensive since it requires 50K individual API calls so the average time in our testing has been 1 deletion per second using the SDK or API. The round trip time latency reduction gives the best case theoretical model would be a reduction of 35-40% time saved per transaction. We were able to witness an average throughput of 0.65 seconds/deletion or approximately 8.5 hours to process the 50K records given favorable network conditions and eliminating any of the code's bookkeeping required for track and report progress real-time.

Using the Bulk Endpoint, the server is doing all of the work deleting assets closer to the database eliminating multiple calls to the API. This deletion is now a single POST to the bulk endpoint. The best-case 8.5 hour deletion time is now approaches 2 hours.

Case Instances

  • A very large US company had over 50,000 notifications accumulated on a single admin account.
  • Another famous international sneaker company can now use the Bulk API for the automated creation of and pre-population of assets that correspond to new employees or making modifications to every Story in a Digital.ai Agility instance that meets some specified criteria whereby using the bulk script like a template.
  • I can personally can now quickly remove 200,000+ Stories created on my test Digital.ai Agility instance, created to test the SDK performance at a massive International Gaming company.
  • A large Health Care company created thousands of test, Member assets when they first purchased Digital.ai Agility. They will be able to use the Bulk API to modify one of the attributes of each of their test assets to be used in their production instance.

Related concepts

Developer library

Getting started

Get an SDK

Custom reporting and Data Mart

Github repositories

Sample code

Bulk api endpoint

Agility bulk api

Related tasks

Asset creation examples1