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-Httpconfig  -Url https://www.example.com `
-HttpDispatchMode null `
-HttpAuthenticationType null `
-BasicAuthConfig null `
-BearerTokenAuthConfig null
  • Convert the resource to JSON
$Httpconfig | ConvertTo-JSON

[Back to top]