diff --git a/docs/tools/sdk/go/index.mdx b/docs/tools/sdk/go/index.mdx index e4f318042..4e8e6bcf0 100644 --- a/docs/tools/sdk/go/index.mdx +++ b/docs/tools/sdk/go/index.mdx @@ -98,7 +98,7 @@ You must provide configuration to the SDK so that it can authenticate to your Sa ### 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) @@ -120,9 +120,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" } ``` @@ -131,15 +131,15 @@ sail sdk init config --env devrel
Manual Configuration -Create a file named "config.json", and provide these key/value pairs: `ClientID`, `ClientSecret`, `BaseUrl`. +Create a file named "config.json", and provide these key/value pairs: `ClientId`, `ClientSecret`, `BaseURL`. #### Example "config.json" ```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/powershell/index.mdx b/docs/tools/sdk/powershell/index.mdx index 958a1be00..852bc9519 100644 --- a/docs/tools/sdk/powershell/index.mdx +++ b/docs/tools/sdk/powershell/index.mdx @@ -102,7 +102,7 @@ You must provide configuration to the SDK so that it can authenticate to your Sa ### 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) @@ -124,9 +124,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" } ``` @@ -135,15 +135,15 @@ sail sdk init config --env devrel
Manual Configuration -Create a file named "config.json", and provide these key/value pairs: `ClientID`, `ClientSecret`, `BaseUrl`. +Create a file named "config.json", and provide these key/value pairs: `ClientId`, `ClientSecret`, `BaseURL`. #### Example `config.json` ```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/typescript/index.mdx b/docs/tools/sdk/typescript/index.mdx index 8c054ef5c..a038e3291 100644 --- a/docs/tools/sdk/typescript/index.mdx +++ b/docs/tools/sdk/typescript/index.mdx @@ -138,7 +138,7 @@ You must provide configuration to the SDK so that it can authenticate to your Sa ### 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) @@ -160,9 +160,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" } ``` @@ -171,15 +171,15 @@ sail sdk init config --env devrel
Manual Configuration -Create a file named "config.json", and provide these key/value pairs: `ClientID`, `ClientSecret`, `BaseUrl`. +Create a file named "config.json", and provide these key/value pairs: `ClientId`, `ClientSecret`, `BaseURL`. #### Example "config.json" ```json { - "ClientID": "g0567b766b413b22c05c66e75d532f1b", + "ClientId": "g0567b766b413b22c05c66e75d532f1b", "ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7", - "BaseUrl": "https://[tenant].api.identitynow.com" + "BaseURL": "https://[tenant].api.identitynow.com" } ```