SendTestNotificationRequestDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | The template notification key. | [optional] |
| medium | Enum [ 'EMAIL', 'SLACK', 'TEAMS' ] | The notification medium. Has to be one of the following enum values. | [optional] |
| context | object | A Json object that denotes the context specific to the template. | [optional] |
| } |
Example
from sailpoint.v2025.models.send_test_notification_request_dto import SendTestNotificationRequestDto
send_test_notification_request_dto = SendTestNotificationRequestDto(
key='cloud_manual_work_item_summary',
medium='EMAIL',
context=None
)