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,37 @@
---
id: beta-start-invocation-input
title: StartInvocationInput
pagination_label: StartInvocationInput
sidebar_label: StartInvocationInput
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'StartInvocationInput', 'BetaStartInvocationInput']
slug: /tools/sdk/python/beta/models/start-invocation-input
tags: ['SDK', 'Software Development Kit', 'StartInvocationInput', 'BetaStartInvocationInput']
---
# StartInvocationInput
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**trigger_id** | **str** | Trigger ID | [optional]
**input** | **object** | Trigger input payload. Its schema is defined in the trigger definition. | [optional]
**content_json** | **object** | JSON map of invocation metadata | [optional]
}
## Example
```python
from sailpoint.beta.models.start_invocation_input import StartInvocationInput
start_invocation_input = StartInvocationInput(
trigger_id='idn:access-requested',
input={identityId=201327fda1c44704ac01181e963d463c},
content_json={workflowId=1234}
)
```
[[Back to top]](#)