Skip to content

Commit 6f145f0

Browse files
authored
docs(platform): account example orgid (#94)
* docs(platform): account example orgid
1 parent 47af57e commit 6f145f0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

examples/accounts/create_accounts.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
account_name = <Account Name>
88
account_type = <Account Type Id>
9+
organisational_unit_id = <Organisational Unit Id>
910

1011
Config.access_key = os.getenv("STAX_ACCESS_KEY")
1112
Config.secret_key = os.getenv("STAX_SECRET_KEY")
@@ -15,5 +16,6 @@
1516
response = accounts.CreateAccount(
1617
Name=account_name,
1718
AccountType=account_type,
19+
OrganisationalUnitId=organisational_unit_id,
1820
)
1921
print(json.dumps(response, indent=4, sort_keys=True))

0 commit comments

Comments
 (0)