diff --git a/pom.xml b/pom.xml
index 550e6b5b..2134985a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,7 +66,7 @@
     2.1.3
     2.10.0
     3.8.1
-    53.0.0
+    62.0.0
     4.0.0
     4.7.2
     2.23.0
diff --git a/src/e2e-test/resources/pluginParameters.properties b/src/e2e-test/resources/pluginParameters.properties
index b2252425..82d7febc 100644
--- a/src/e2e-test/resources/pluginParameters.properties
+++ b/src/e2e-test/resources/pluginParameters.properties
@@ -125,6 +125,7 @@ lead.schema=[{"key":"Id","value":"string"},\
 {"key":"EmailBouncedReason","value":"string"},\
 {"key":"EmailBouncedDate","value":"timestamp"},\
 {"key":"IndividualId","value":"string"},\
+{"key":"IsPriorityRecord","value":"boolean"},\
 {"key":"Follow_Up__c","value":"boolean"},\
 {"key":"npe01__Preferred_Email__c","value":"string"},\
 {"key":"npe01__Preferred_Phone__c","value":"string"},\
@@ -186,6 +187,7 @@ account.schema= [{"key":"Id","value":"string"},\
 {"key":"JigsawCompanyId","value":"string"},\
 {"key":"AccountSource","value":"string"},\
 {"key":"SicDesc","value":"string"},\
+{"key":"IsPriorityRecord","value":"boolean"},\
 {"key":"Copy_Billing_Address_to_Shipping_Address__c","value":"boolean"},\
 {"key":"Test_External_Id__c","value":"string"},\
 {"key":"custom_field__c","value":"string"},\
diff --git a/src/main/java/io/cdap/plugin/salesforce/SalesforceConstants.java b/src/main/java/io/cdap/plugin/salesforce/SalesforceConstants.java
index 8b0901bc..0469fe66 100644
--- a/src/main/java/io/cdap/plugin/salesforce/SalesforceConstants.java
+++ b/src/main/java/io/cdap/plugin/salesforce/SalesforceConstants.java
@@ -24,7 +24,7 @@
  */
 public class SalesforceConstants {
 
-  public static final String API_VERSION = "53.0";
+  public static final String API_VERSION = "62.0";
   public static final String REFERENCE_NAME_DELIMITER = ".";
 
   public static final String PROPERTY_CONSUMER_KEY = "consumerKey";