Exclude requiredIdDocs from the applicant details

This commit is contained in:
IshaVenikar 2024-07-29 18:45:04 +05:30
parent a17f060f4d
commit 8fa331a07a

View File

@ -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);
}