Skip to main content

Notificationtemplatecontext

Properties

NameTypeDescriptionNotes
attributesmap[string]objectA JSON object that stores the context.[optional]
createddatetimeWhen the global context was created[optional]
modifieddatetimeWhen the global context was last modified[optional]
}

Example

from sailpoint.notifications.models.notificationtemplatecontext import Notificationtemplatecontext

notificationtemplatecontext = Notificationtemplatecontext(
attributes={"productUrl":"https://test-org.identitysoon.com","brandingConfigs":{"default":{"narrowLogoURL":null,"productName":"SailPoint","standardLogoURL":null,"navigationColor":"011E64","actionButtonColor":"20B2DE","emailFromAddress":null,"activeLinkColor":"20B2DE","loginInformationalMessage":null}}},
created='2020-04-15T16:16:47.525Z',
modified='2020-04-15T16:16:47.525Z'
)

[Back to top]