Skip to main content

HttpConfig

Properties

NameTypeDescriptionNotes
UrlStringURL of the external/custom integration.[required]
HttpDispatchModeHttpDispatchMode[required]
HttpAuthenticationTypeHttpAuthenticationType[optional]
BasicAuthConfigBasicAuthConfig[optional]
BearerTokenAuthConfigBearerTokenAuthConfig[optional]

Examples

  • Prepare the resource
$HttpConfig = Initialize-PSSailpoint.V2024HttpConfig  -Url https://www.example.com `
-HttpDispatchMode null `
-HttpAuthenticationType null `
-BasicAuthConfig null `
-BearerTokenAuthConfig null
  • Convert the resource to JSON
$HttpConfig | ConvertTo-JSON

[Back to top]