diff --git a/docs/tools/sdk/python/deleting-resources.md b/docs/tools/sdk/python/deleting-resources.md index 06677b8f8..35b61edb8 100644 --- a/docs/tools/sdk/python/deleting-resources.md +++ b/docs/tools/sdk/python/deleting-resources.md @@ -47,7 +47,7 @@ except Exception as e: Run this command to run the code: ```bash -python sdk.go +python sdk.py ``` The SDK returns the `deletionStatus` with a value of 204. diff --git a/docs/tools/sdk/python/index.mdx b/docs/tools/sdk/python/index.mdx index 1e595667c..f5017cd2b 100644 --- a/docs/tools/sdk/python/index.mdx +++ b/docs/tools/sdk/python/index.mdx @@ -95,7 +95,7 @@ You must provide configuration to the SDK so it can authenticate to your SailPoi ### Configuration File -The SDK requires a configuration file to be named "config.json". Within the file, provide these key/value pairs: `ClientID`, `ClientSecret`, `BaseUrl`. +The SDK requires a configuration file to be named "config.json". Within the file, provide these key/value pairs: `ClientId`, `ClientSecret`, `BaseURL`.
CLI Assisted (Recommended) @@ -117,9 +117,9 @@ sail sdk init config --env devrel ```json { - "ClientID": "g0567b766b413b22c05c66e75d532f1b", + "ClientId": "g0567b766b413b22c05c66e75d532f1b", "ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7", - "BaseUrl": "https://[tenant].api.identitynow.com" + "BaseURL": "https://[tenant].api.identitynow.com" } ``` @@ -134,9 +134,9 @@ Create a file named "config.json", and provide these key/value pairs: `ClientID` ```json { - "ClientID": "g0567b766b413b22c05c66e75d532f1b", + "ClientId": "g0567b766b413b22c05c66e75d532f1b", "ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7", - "BaseUrl": "https://[tenant].api.identitynow.com" + "BaseURL": "https://[tenant].api.identitynow.com" } ``` diff --git a/docs/tools/sdk/python/retries.md b/docs/tools/sdk/python/retries.md index d884cc7fb..c7f634d22 100644 --- a/docs/tools/sdk/python/retries.md +++ b/docs/tools/sdk/python/retries.md @@ -35,5 +35,5 @@ print(accounts) Run this command to run the code: ```bash -python sdk.go +python sdk.py ``` diff --git a/docs/tools/sdk/python/updating-resources.md b/docs/tools/sdk/python/updating-resources.md index 72d865fef..e89d031d9 100644 --- a/docs/tools/sdk/python/updating-resources.md +++ b/docs/tools/sdk/python/updating-resources.md @@ -51,7 +51,7 @@ except Exception as e: Run this command to run the code: ```bash -python sdk.go +python sdk.py ``` The example uses a PATCH `replace` operation to update the value in the `/description` path to "This is an updated description for the workgroup."