mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.2 KiB
1.2 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-complete-invocation | CompleteInvocation | CompleteInvocation | CompleteInvocation | pythonsdk |
|
/tools/sdk/python/v2024/models/complete-invocation |
|
CompleteInvocation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| secret | str | Unique invocation secret that was generated when the invocation was created. Required to authenticate to the endpoint. | [required] |
| error | str | The error message to indicate a failed invocation or error if any. | [optional] |
| output | object | Trigger output to complete the invocation. Its schema is defined in the trigger definition. | [required] |
| } |
Example
from sailpoint.v2024.models.complete_invocation import CompleteInvocation
complete_invocation = CompleteInvocation(
secret='0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
error='Access request is denied.',
output={approved=false}
)