Accelerate the Value of Data

Adding Record ID Generators

Add an ID generator.

To add a generator use a POST request as shown here:

POST https://{serverURL}/generators

The body of the request should include the generator name, type and UUID version as shown here:

{
 {
 "name": "UUID_4",
 "type": "UUID",
 "uuidVersion": 4
 }
}
Note: None of the currently defined parameter values can be updated, so at present this endpoint can be used only for creating generators.

This request returns the details of and conformation for the created generator.

Create SEQUENTIAL Generator With HEX Format and Fixed Length

Request

POST https://{serverURL}/generators
Table 1. Headers
NameRequiredDescription
AuthorizationYesBearer <access_token>
Content-TypeYesapplication/json

Body

[
    {
        "name" : "{generator_name}",
        "type" : "SEQUENTIAL",
        "valueType": "HEX",
        "rangeStart": "1",
        "step": "A",
        "fixedLength" : 4
    }
]

Response

[
    {
        "name" : "{generator_name}",
        "type" : "SEQUENTIAL",
        "valueType" : "HEX",
        "rangeStart" : "1",
        "step": "A",
        "fixedLength" : 4
    }
]

Create UUID Generator

Request

Table 2. Headers
NameRequiredDescription
AuthorizationYesBearer <access_token>
Content-TypeYesapplication/json

Body

The body of the request should include the generator name, type, and UUID version as shown here:

[
    {
        "name" : "{generator_name}",
        "type" : "UUID",
        "uuidVersion": 4
    }
]

Response

[
   {
      "name": "{generator_name}",
      "type": "UUID",
      "uuidVersion": 4
    }
]