We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc0684 commit c2f7405Copy full SHA for c2f7405
README.md
@@ -531,6 +531,17 @@ result = j1.upload_combined_batch_json(
531
print(f"Uploaded {len(combined_payload['entities'])} entities and {len(combined_payload['relationships'])} relationships")
532
```
533
534
+##### Abort Synchronization Job
535
+```python
536
+# Abort the sync job
537
+result = j1.abort_sync_job(instance_job_id='<id-of-integration-sync-job>')
538
+print(f"Abort sync job: {result['status'].get('id')}")
539
+
540
+# Check job status
541
+if result['job']['status'] == 'ABORTED':
542
+ print("Sync job Abort successfully")
543
+```
544
545
##### Finalize Synchronization Job
546
547
```python
0 commit comments