diff --git a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024TenantApi.md b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024TenantApi.md index 1a7dbdbbc..c54ae3159 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024TenantApi.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024TenantApi.md @@ -21,9 +21,6 @@ Method | HTTP request | Description ## get-tenant -:::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. -::: This rest endpoint can be used to retrieve tenant details. [API Spec](https://developer.sailpoint.com/docs/api/v2024/get-tenant) @@ -31,7 +28,6 @@ This rest endpoint can be used to retrieve tenant details. ### Parameters Param Type | Name | Data Type | Required | Description ------------- | ------------- | ------------- | ------------- | ------------- - | XSailPointExperimental | **String** | True (default to "true") | Use this header to enable this experimental API. ### Return type [**Tenant**](../models/tenant) @@ -53,15 +49,14 @@ Code | Description | Data Type ### Example ```powershell -$XSailPointExperimental = "true" # String | Use this header to enable this experimental API. (default to "true") # Get Tenant Information. try { - Get-V2024Tenant -XSailPointExperimental $XSailPointExperimental + Get-V2024Tenant # Below is a request that includes all optional parameters - # Get-V2024Tenant -XSailPointExperimental $XSailPointExperimental + # Get-V2024Tenant } catch { Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2024Tenant" Write-Host $_.ErrorDetails diff --git a/static/code-examples/v2024/code_examples_overlay.yaml b/static/code-examples/v2024/code_examples_overlay.yaml index 086fc33e2..c721008d6 100644 --- a/static/code-examples/v2024/code_examples_overlay.yaml +++ b/static/code-examples/v2024/code_examples_overlay.yaml @@ -15804,15 +15804,14 @@ - lang: PowerShell label: SDK_tools/sdk/powershell/v2024/methods/tenant#get-tenant source: | - $XSailPointExperimental = "true" # String | Use this header to enable this experimental API. (default to "true") # Get Tenant Information. try { - Get-V2024Tenant -XSailPointExperimental $XSailPointExperimental + Get-V2024Tenant # Below is a request that includes all optional parameters - # Get-V2024Tenant -XSailPointExperimental $XSailPointExperimental + # Get-V2024Tenant } catch { Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2024Tenant" Write-Host $_.ErrorDetails