Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/WorkflowOAuthClient.md
2025-05-07 14:37:48 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-workflow-o-auth-client WorkflowOAuthClient WorkflowOAuthClient WorkflowOAuthClient powershellsdk
powershell
PowerShell
sdk
WorkflowOAuthClient
V2024WorkflowOAuthClient
/tools/sdk/powershell/v2024/models/workflow-o-auth-client
SDK
Software Development Kit
WorkflowOAuthClient
V2024WorkflowOAuthClient

WorkflowOAuthClient

Properties

Name Type Description Notes
Id String OAuth client ID for the trigger. This is a UUID generated upon creation. [optional]
Secret String OAuthClient secret. [optional]
Url String URL for the external trigger to invoke [optional]

Examples

  • Prepare the resource
$WorkflowOAuthClient = Initialize-V2024WorkflowOAuthClient  -Id 1a58c03a6bf64dc2876f6988c6e2c7b7 `
 -Secret 00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b `
 -Url https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b
  • Convert the resource to JSON
$WorkflowOAuthClient | ConvertTo-JSON

[Back to top]