Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/PostExternalExecuteWorkflow200Response.md
2025-02-20 12:59:19 -05:00

1.3 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
beta-post-external-execute-workflow200-response PostExternalExecuteWorkflow200Response PostExternalExecuteWorkflow200Response PostExternalExecuteWorkflow200Response pythonsdk
python
Python
sdk
PostExternalExecuteWorkflow200Response
BetaPostExternalExecuteWorkflow200Response
/tools/sdk/python/beta/models/post-external-execute-workflow200-response
SDK
Software Development Kit
PostExternalExecuteWorkflow200Response
BetaPostExternalExecuteWorkflow200Response

PostExternalExecuteWorkflow200Response

Properties

Name Type Description Notes
workflow_execution_id str The workflow execution id [optional]
message str An error message if any errors occurred [optional]
}

Example

from sailpoint.beta.models.post_external_execute_workflow200_response import PostExternalExecuteWorkflow200Response

post_external_execute_workflow200_response = PostExternalExecuteWorkflow200Response(
workflow_execution_id='0e11cefa-96e7-4b67-90d0-065bc1da5753',
message='Workflow was not executed externally. Check enabled flag on workflow definition'
)

[Back to top]