Skip to content

Commit

Permalink
Update SFDC REST api to v60 (Srping 24release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgj committed Feb 12, 2024
1 parent d802f68 commit 43e68d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tap_salesforce/salesforce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __init__(self,
self.default_start_date = default_start_date
self.rest_requests_attempted = 0
self.jobs_completed = 0
self.data_url = "{}/services/data/v53.0/{}"
self.data_url = "{}/services/data/v60.0/{}"
self.pk_chunking = False

self.auth = SalesforceAuth.from_credentials(credentials, is_sandbox=self.is_sandbox)
Expand Down
2 changes: 1 addition & 1 deletion tap_salesforce/salesforce/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _query_recur(
end_date=None,
retries=MAX_RETRIES):
params = {"q": query}
url = "{}/services/data/v53.0/queryAll".format(self.sf.instance_url)
url = "{}/services/data/v60.0/queryAll".format(self.sf.instance_url)
headers = self.sf.auth.rest_headers

sync_start = singer_utils.now()
Expand Down

0 comments on commit 43e68d1

Please sign in to comment.