Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ExternalAttributes.md
2025-02-20 12:59:19 -05:00

1.3 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
beta-external-attributes ExternalAttributes ExternalAttributes ExternalAttributes pythonsdk
python
Python
sdk
ExternalAttributes
BetaExternalAttributes
/tools/sdk/python/beta/models/external-attributes
SDK
Software Development Kit
ExternalAttributes
BetaExternalAttributes

ExternalAttributes

Attributes related to an external trigger

Properties

Name Type Description Notes
name str A unique name for the external trigger [optional]
description str Additional context about the external trigger [optional]
client_id str OAuth Client ID to authenticate with this trigger [optional]
url str URL to invoke this workflow [optional]
}

Example

from sailpoint.beta.models.external_attributes import ExternalAttributes

external_attributes = ExternalAttributes(
name='search-and-notify',
description='Run a search and notify the results',
client_id='87e239b2-b85b-4bde-b9a7-55bf304ddcdc',
url='https://tenant.api.identitynow.com/beta/workflows/execute/external/c79e0079-562c-4df5-aa73-60a9e25c916d'
)

[Back to top]