Skip to content

Commit

Permalink
Fix start_sync_job
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed Dec 12, 2024
1 parent a831f47 commit dd9a37d
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -994,13 +994,14 @@ def get_destination_details(self, destination_id: str) -> Mapping[str, Any]:

def start_sync_job(self, connection_id: str) -> Mapping[str, Any]:
return self._make_request(
endpoint="jobs",
data={
"connectionId": connection_id,
"jobType": "sync",
},
)

method="POST",
endpoint="jobs",
base_url=self.rest_api_base_url,
data={
"connectionId": connection_id,
"jobType": "sync",
},
)


@experimental
Expand Down

0 comments on commit dd9a37d

Please sign in to comment.