From 0c52a02e5ef55ec1b81e797ea01d10344943bfa7 Mon Sep 17 00:00:00 2001 From: Vikas Agarwal Date: Tue, 23 Feb 2021 12:15:46 +0530 Subject: [PATCH] fix: git#631-Name field is not returned for Billing Account endpoint --- src/services/salesforceService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/salesforceService.js b/src/services/salesforceService.js index 09dc66e2..b627704c 100644 --- a/src/services/salesforceService.js +++ b/src/services/salesforceService.js @@ -70,7 +70,7 @@ class SalesforceService { 10, null, // fallback to null if cannot parse ), - name: _.get(o, 'Topcoder_Billing_Account__r.Billing_Account_Name__c'), + name: _.get(o, 'Topcoder_Billing_Account__r.Billing_Account_name__c'), startDate: _.get(o, 'Topcoder_Billing_Account__r.Start_Date__c'), endDate: _.get(o, 'Topcoder_Billing_Account__r.End_Date__c'), }));