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
| Parameter | Type | Required | Description |
|---|---|---|---|
| person_id | string | Yes | The identifier of the Person entity to list. |
Example
{
"person_id": "p_57WfSCnafMnxDiWMKcy3EW"
}
Response
Data
| Parameter | Type | Description |
|---|---|---|
| issued_identifiers | array | List of issued identifier objects for the Person. |
IssuedIdentifier Parameters
| Parameter | Type | Description |
|---|---|---|
| issued_identifier_id | string | The identifier for the IssuedIdentifier just created. |
| type | enum | The type of identifier issued (e.g., medical_license. |
| person_id | string | The identifier of the associated Person entity. |
| issued_number | string | The official identifier number assigned to the person. |
| created_at | string | The 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_at | string | The 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 Code | HTTP Code | Possible Cause |
|---|---|---|
| BAD_REQUEST | 400 | Required parameters not provided. |
| ENTITY_NOT_FOUND | 400 | The person_id provided does not exist. |
Updated 6 months ago