Skip to main content

ExternalAttributes

Properties

NameTypeDescriptionNotes
NameStringA unique name for the external trigger[optional]
DescriptionStringAdditional context about the external trigger[optional]
ClientIdStringOAuth Client ID to authenticate with this trigger[optional]
UrlStringURL to invoke this workflow[optional]

Examples

  • Prepare the resource
$ExternalAttributes = Initialize-PSSailpoint.BetaExternalAttributes  -Name search-and-notify `
-Description Run a search and notify the results `
-ClientId 87e239b2-b85b-4bde-b9a7-55bf304ddcdc `
-Url https://tenant.api.identitynow.com/beta/workflows/execute/external/c79e0079-562c-4df5-aa73-60a9e25c916d
  • Convert the resource to JSON
$ExternalAttributes | ConvertTo-JSON

[Back to top]