diff --git a/src/subdomains/generic/support/dto/user-data-support.dto.ts b/src/subdomains/generic/support/dto/user-data-support.dto.ts index da128aaf01..cd9ff2bf56 100644 --- a/src/subdomains/generic/support/dto/user-data-support.dto.ts +++ b/src/subdomains/generic/support/dto/user-data-support.dto.ts @@ -84,6 +84,7 @@ export class TransactionListEntry { id: number; type?: string; accountId?: number; + kycFileId?: number; name?: string; domicile?: string; created?: Date; diff --git a/src/subdomains/generic/support/support.service.ts b/src/subdomains/generic/support/support.service.ts index 7bbef4dd2a..c9c6007fee 100644 --- a/src/subdomains/generic/support/support.service.ts +++ b/src/subdomains/generic/support/support.service.ts @@ -174,6 +174,7 @@ export class SupportService { id: tx.id, type: tx.type, accountId: tx.userData?.id, + kycFileId: tx.userData?.kycFileId, name: tx.userData?.verifiedName, domicile: tx.userData?.country?.name, created: tx.created,