Exclude requiredIdDocs from the applicant details
This commit is contained in:
parent
a17f060f4d
commit
8fa331a07a
@ -38,6 +38,17 @@ function getApplicantDetails (applicantId: string | number) {
|
||||
return config;
|
||||
}
|
||||
|
||||
function customReplacer(key: string, value: any): any {
|
||||
if (key === 'requiredIdDocs' && typeof value === 'object' && value !== null) {
|
||||
const containsArray = Object.values(value).some(Array.isArray);
|
||||
if (containsArray) {
|
||||
return undefined; // Exclude this key because the includedCountries and docSets data is not required
|
||||
}
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
export const handler = async (argv: Arguments) => {
|
||||
const applicantId = argv.applicantId as string;
|
||||
|
||||
@ -47,7 +58,7 @@ export const handler = async (argv: Arguments) => {
|
||||
|
||||
try {
|
||||
const response = await sumsubAxios(getApplicantDetails(applicantId));
|
||||
console.log('Applicant Data:', JSON.stringify(response.data, null, 2));
|
||||
console.log('Applicant Data:', JSON.stringify(response.data, customReplacer, 1));
|
||||
} catch (error: any) {
|
||||
console.error('Failed to fetch applicant data:', error.response ? error.response.data : error.message);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user