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 3000ba9 commit da48811Copy full SHA for da48811
examples/accounts/create_accounts.py
@@ -6,6 +6,7 @@
6
7
account_name = <Account Name>
8
account_type = <Account Type Id>
9
+organisational_unit_id = <Organisational Unit Id>
10
11
Config.access_key = os.getenv("STAX_ACCESS_KEY")
12
Config.secret_key = os.getenv("STAX_SECRET_KEY")
@@ -15,5 +16,6 @@
15
16
response = accounts.CreateAccount(
17
Name=account_name,
18
AccountType=account_type,
19
+ OrganisationalUnitId=organisational_unit_id,
20
)
21
print(json.dumps(response, indent=4, sort_keys=True))
0 commit comments