Skip to main content

ExternalAttributes

Attributes related to an external trigger

Properties

NameTypeDescriptionNotes
namestrA unique name for the external trigger[optional]
descriptionstrAdditional context about the external trigger[optional]
client_idstrOAuth Client ID to authenticate with this trigger[optional]
urlstrURL 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]