v3

latestOpenAPI 3.0.3Apache 2.02026-07-312637031.3 MB
Personal ID Configuration

Create a personal ID configuration

Create a personal ID configuration

post/personal_id_configurations

Request body

public_encryption_keystring required

A public encryption key used for encrypting personal identifiers before transport.

tenantstring

The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

Example request

{
  "public_encryption_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...",
  "tenant": "abcdef_ghijkl"
}

Response

Created personal ID configuration

creation_timestring date-time required

The date and time the configuration was created.

idstring uuid required

Personal ID configuration ID

last_updated_timestring date-time required

The date and time the configuration was last updated.

public_encryption_keystring required

A public encryption key used for encrypting personal identifiers before transport.

tenantstring required

The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

Example response

{
  "creation_time": "2010-05-06T12:23:34.321Z",
  "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "last_updated_time": "2010-05-06T12:23:34.321Z",
  "public_encryption_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...",
  "tenant": "abcdef_ghijkl"
}