From c9eeb2ae3b4d4902b3a7bbd3311a7cf175c64c88 Mon Sep 17 00:00:00 2001 From: developer-relations-sp Date: Mon, 14 Jul 2025 07:51:09 +0000 Subject: [PATCH] Update PowerShell SDK docs: 16261119809 --- .../Reference/V2025/Methods/V2025OrgConfigApi.md | 9 ++------- .../v2025/powershell_code_examples_overlay.yaml | 5 ++--- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025OrgConfigApi.md b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025OrgConfigApi.md index 6b1566db3..bc3fb5e31 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025OrgConfigApi.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025OrgConfigApi.md @@ -25,9 +25,6 @@ Method | HTTP request | Description ## get-org-config -:::warning experimental -This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to `true` to use this endpoint. -::: Get the current organization's configuration settings, only external accessible properties. [API Spec](https://developer.sailpoint.com/docs/api/v2025/get-org-config) @@ -35,7 +32,6 @@ Get the current organization's configuration settings, only external accessible ### Parameters Param Type | Name | Data Type | Required | Description ------------- | ------------- | ------------- | ------------- | ------------- - | XSailPointExperimental | **String** | True (default to "true") | Use this header to enable this experimental API. ### Return type [**OrgConfig**](../models/org-config) @@ -57,15 +53,14 @@ Code | Description | Data Type ### Example ```powershell -$XSailPointExperimental = "true" # String | Use this header to enable this experimental API. (default to "true") # Get org config settings try { - Get-V2025OrgConfig -XSailPointExperimental $XSailPointExperimental + Get-V2025OrgConfig # Below is a request that includes all optional parameters - # Get-V2025OrgConfig -XSailPointExperimental $XSailPointExperimental + # Get-V2025OrgConfig } catch { Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025OrgConfig" Write-Host $_.ErrorDetails diff --git a/static/code-examples/v2025/powershell_code_examples_overlay.yaml b/static/code-examples/v2025/powershell_code_examples_overlay.yaml index 250c65981..435eec773 100644 --- a/static/code-examples/v2025/powershell_code_examples_overlay.yaml +++ b/static/code-examples/v2025/powershell_code_examples_overlay.yaml @@ -11441,15 +11441,14 @@ - lang: PowerShell label: SDK_tools/sdk/powershell/v2025/methods/org-config#get-org-config source: | - $XSailPointExperimental = "true" # String | Use this header to enable this experimental API. (default to "true") # Get org config settings try { - Get-V2025OrgConfig -XSailPointExperimental $XSailPointExperimental + Get-V2025OrgConfig # Below is a request that includes all optional parameters - # Get-V2025OrgConfig -XSailPointExperimental $XSailPointExperimental + # Get-V2025OrgConfig } catch { Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025OrgConfig" Write-Host $_.ErrorDetails