person.issuedIdentifier.get

Retrieve an IssuedIdentifier for a Person entity by its unique identifier.

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

Usage Info

The Person IssuedIdentifier feature allows retrieval of a unique identifier (e.g., medical license) assigned to a Person. Use this to fetch official identification details for audit, compliance, or stakeholder verification.

Request

Authentication: KSig1-HMAC-SHA256

Parameters

ParameterTypeRequiredDescription
issued_identifier_idstringYesThe identifier of the IssuedIdentifier to retrieve.

Example

{
  "issued_identifier_id": "pii_57WfSCnafMnxDiWMKcy3EW"
}

Response

Data

ParameterTypeDescription
issued_identifierobjectThe issued identifier parameter defined in the tables below.

Person 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_identifier": {
      "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 issued_identifier_id provided does not exist.