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,39 @@
---
id: v2024-invocation
title: Invocation
pagination_label: Invocation
sidebar_label: Invocation
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Invocation', 'V2024Invocation']
slug: /tools/sdk/python/v2024/models/invocation
tags: ['SDK', 'Software Development Kit', 'Invocation', 'V2024Invocation']
---
# Invocation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Invocation ID | [optional]
**trigger_id** | **str** | Trigger ID | [optional]
**secret** | **str** | Unique invocation secret. | [optional]
**content_json** | **object** | JSON map of invocation metadata. | [optional]
}
## Example
```python
from sailpoint.v2024.models.invocation import Invocation
invocation = Invocation(
id='0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
trigger_id='idn:access-requested',
secret='0f979022-08be-44f2-b6f9-7393ec73ed9b',
content_json={workflowId=1234}
)
```
[[Back to top]](#)