person.issuedIdentifier.list

Retrieve all IssuedIdentifiers for a Person entity.

POST http://api.kompliant.com/person.issuedIdentifier.list (OpenAPI specification)

Usage Info

The Person IssuedIdentifier feature allows listing all unique identifiers (e.g., medical licenses) assigned to a Person. Use this to view official identification details for audit, compliance, or stakeholder management.

Request

Authentication: KSig1-HMAC-SHA256

Parameters

ParameterTypeRequiredDescription
person_idstringYesThe identifier of the Person entity to list.

Example

{
  "person_id": "p_57WfSCnafMnxDiWMKcy3EW"
}

Response

Data

ParameterTypeDescription
issued_identifiersarrayList of issued identifier objects for the Person.

IssuedIdentifier Parameters

ParameterTypeDescription
issued_identifier_idstringThe identifier for the IssuedIdentifier just created.
typeenumThe type of identifier issued (e.g., medical_license.
person_idstringThe identifier of the associated Person entity.
issued_numberstringThe official identifier number assigned to the person.
created_atstringThe date-time when the Person IssuedIdentifier was created.

The value will be in ISO 8601 date and time format (YYYY-MM-DDTHH:mm:ss.SSSZ).
updated_atstringThe date-time when the Person IssuedIdentifier was last updated. If there has been no update, the value will be the same as the created_at value.

The value will be in ISO 8601 date and time format (YYYY-MM-DDTHH:mm:ss.SSSZ).

Example

{
  "meta": {
    "status": "SUCCESS",
    "trace_id": "trc_3XsPP17u8mU3k29x944ygx",
    "version": "2025-03-24"
  },
  "data": {
    "issued_identifiers": [
      {
        "issued_identifier_id": "pii_4PYsekjAX8VMuAOfmW81C7",
        "type": "MEDICAL_LICENSE",
        "issued_number": "MED098AB566",
        "person_id": "p_57WfSCnafMnxDiWMKcy3EW"
      }
    ]
  }
}

Errors

Error CodeHTTP CodePossible Cause
BAD_REQUEST400Required parameters not provided.
ENTITY_NOT_FOUND400The person_id provided does not exist.