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,33 @@
---
id: create-external-execute-workflow-request
title: CreateExternalExecuteWorkflowRequest
pagination_label: CreateExternalExecuteWorkflowRequest
sidebar_label: CreateExternalExecuteWorkflowRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CreateExternalExecuteWorkflowRequest', 'CreateExternalExecuteWorkflowRequest']
slug: /tools/sdk/python/v3/models/create-external-execute-workflow-request
tags: ['SDK', 'Software Development Kit', 'CreateExternalExecuteWorkflowRequest', 'CreateExternalExecuteWorkflowRequest']
---
# CreateExternalExecuteWorkflowRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**input** | **object** | The input for the workflow | [optional]
}
## Example
```python
from sailpoint.v3.models.create_external_execute_workflow_request import CreateExternalExecuteWorkflowRequest
create_external_execute_workflow_request = CreateExternalExecuteWorkflowRequest(
input={customAttribute1=value1, customAttribute2=value2}
)
```
[[Back to top]](#)