POST v2/api/pseudonymouskeybatch

Generate a new signed batch of Pseudonymous Keys. The mechanism used to sign the response is periodically changed, so the response should be passed to the Data Engine shortly after generation or validation may return false.

Request Information

Parameters

NameDescriptionAdditional information
size
Number of pseudonymous keys to generate. Can be no more than 1000.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Size": 10
}

Response Information

A signed batch of pseudonymous keys containing: An array of Pseudonymous Keys; the timestamp at which the response was generated; and a signature that can be used for validation.

Response body formats

application/json, text/json

Sample:
{
  "PseudonymousKeys": [
    "00000000-0000-0000-0000-000000000000",
    "00000000-0000-0000-0000-000000000000",
    "00000000-0000-0000-0000-000000000000"
  ],
  "TimeStamp": "2011-02-14T00:00:00",
  "Signature": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
}