Skip to main content

SendTestNotificationRequestDto

Properties

NameTypeDescriptionNotes
keystrThe template notification key.[optional]
mediumEnum [ 'EMAIL', 'SLACK', 'TEAMS' ]The notification medium. Has to be one of the following enum values.[optional]
contextobjectA Json object that denotes the context specific to the template.[optional]
}

Example

from sailpoint.beta.models.send_test_notification_request_dto import SendTestNotificationRequestDto

send_test_notification_request_dto = SendTestNotificationRequestDto(
key='cloud_manual_work_item_summary',
medium='EMAIL',
context=None
)

[Back to top]