starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,35 @@
---
id: beta-post-external-execute-workflow200-response
title: PostExternalExecuteWorkflow200Response
pagination_label: PostExternalExecuteWorkflow200Response
sidebar_label: PostExternalExecuteWorkflow200Response
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PostExternalExecuteWorkflow200Response', 'BetaPostExternalExecuteWorkflow200Response']
slug: /tools/sdk/python/beta/models/post-external-execute-workflow200-response
tags: ['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
```python
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]](#)