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 c4d1953 commit ccd685dCopy full SHA for ccd685d
examples/bulk_upload.py
@@ -1,8 +1,5 @@
1
from jupiterone.client import JupiterOneClient
2
-import random
3
-import time
4
import os
5
-import json
6
7
account = os.environ.get("JUPITERONE_ACCOUNT")
8
token = os.environ.get("JUPITERONE_TOKEN")
examples/sync_job_workflow.py
@@ -31,7 +31,7 @@ def main():
31
sys.exit(1)
32
33
# Create JupiterOne client
34
- j1 = JupiterOneClient(api_token=api_token, account_id=account_id)
+ j1 = JupiterOneClient(token=api_token, account=account_id)
35
36
print("=== JupiterOne Sync Job Workflow Example ===\n")
37
0 commit comments